mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-29 18:40:23 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0fde6d128a | ||
|
|
6abbc18f77 | ||
|
|
cd20062255 | ||
|
|
a164de717a | ||
|
|
cd919aa8c5 | ||
|
|
8f41066dca | ||
|
|
704f92c11d | ||
|
|
38b59bc959 | ||
|
|
a20bdf712d | ||
|
|
cc73724b43 |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -27,6 +27,7 @@ pluginconf
|
||||
ppcle
|
||||
prek
|
||||
quickinstall
|
||||
rclone
|
||||
rdme
|
||||
rootfs
|
||||
sccache
|
||||
|
||||
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@@ -1,6 +1,6 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: cargo
|
||||
- package-ecosystem: cargo # zizmor: ignore[dependabot-cooldown] # Unless dependencies are pinned/locked, the effect is limited.
|
||||
directory: /
|
||||
schedule:
|
||||
interval: daily
|
||||
@@ -14,6 +14,8 @@ updates:
|
||||
directory: /
|
||||
schedule:
|
||||
interval: daily
|
||||
cooldown:
|
||||
default-days: 7
|
||||
commit-message:
|
||||
prefix: ''
|
||||
labels: []
|
||||
|
||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -155,7 +155,7 @@ jobs:
|
||||
- run: env
|
||||
- uses: ./
|
||||
with:
|
||||
# NB: Update alias list in tools/publish.rs, case for aliases in main.sh,
|
||||
# NB: Update alias list in release.yml, case for aliases in main.sh,
|
||||
# and match for alias for tools/codegen/src/tools-markdown.rs.
|
||||
tool: |
|
||||
nextest
|
||||
|
||||
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
@@ -91,7 +91,6 @@ jobs:
|
||||
printf '%s\n' "release-date=${release_date}" >>"${GITHUB_OUTPUT}"
|
||||
|
||||
# Get the current revision.
|
||||
retry git fetch origin &>/dev/null
|
||||
rev=$(git rev-parse HEAD)
|
||||
printf '%s\n' "rev: ${rev}"
|
||||
printf '%s\n' "rev=${rev}" >>"${GITHUB_OUTPUT}"
|
||||
@@ -259,7 +258,9 @@ jobs:
|
||||
release_date="${RELEASE_DATE}"
|
||||
|
||||
# Make sure the current revision is same as prepare step.
|
||||
retry git fetch origin &>/dev/null
|
||||
# --unshallow is necessary to successfully push the
|
||||
# "releases/${major_version_tag}" branch in the subsequent step.
|
||||
retry git fetch origin --unshallow &>/dev/null
|
||||
rev=$(git rev-parse HEAD)
|
||||
if [[ "${rev}" != "${PREPARE_REV}" ]]; then
|
||||
bail "revision difference between prepare step"
|
||||
@@ -324,12 +325,11 @@ jobs:
|
||||
set -x
|
||||
git tag "${tag}"
|
||||
retry git push origin HEAD
|
||||
retry git push origin refs/tags/"${tag}"
|
||||
|
||||
major_version_tag="v${version%%.*}"
|
||||
git branch "releases/${major_version_tag}"
|
||||
git tag -f "${major_version_tag}"
|
||||
refs=("refs/heads/releases/${major_version_tag}" "+refs/tags/${major_version_tag}")
|
||||
refs=("refs/tags/${tag}" "refs/heads/releases/${major_version_tag}" "+refs/tags/${major_version_tag}")
|
||||
|
||||
tools=()
|
||||
for tool in tools/codegen/base/*.json; do
|
||||
@@ -358,7 +358,7 @@ jobs:
|
||||
git add action.yml
|
||||
git commit -m "${tool}"
|
||||
git tag -f "${tool}"
|
||||
git checkout main
|
||||
git checkout refs/tags/"${tag}"
|
||||
refs+=("+refs/heads/releases/${tool}" "+refs/tags/${tool}")
|
||||
branches+=("releases/${tool}")
|
||||
done
|
||||
|
||||
2
.github/zizmor.yml
vendored
2
.github/zizmor.yml
vendored
@@ -2,10 +2,8 @@
|
||||
# https://docs.zizmor.sh/configuration/
|
||||
|
||||
rules:
|
||||
dependabot-cooldown: { disable: true } # Unless dependencies are pinned/locked, the effect is limited.
|
||||
secrets-inherit: { disable: true }
|
||||
unpinned-uses:
|
||||
config:
|
||||
policies:
|
||||
taiki-e/*: any
|
||||
'*': ref-pin
|
||||
|
||||
21
CHANGELOG.md
21
CHANGELOG.md
@@ -10,6 +10,22 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.70.0] - 2026-03-28
|
||||
|
||||
- Install `uv`, `uvw` (Windows-only), and `uvx` binaries when installing `uv`. Previously, only `uv` binary was installed. ([#1632](https://github.com/taiki-e/install-action/pull/1632))
|
||||
|
||||
## [2.69.14] - 2026-03-28
|
||||
|
||||
- Update `just@latest` to 1.48.1.
|
||||
|
||||
- Update `wasm-bindgen@latest` to 0.2.115.
|
||||
|
||||
## [2.69.13] - 2026-03-27
|
||||
|
||||
- Update `mise@latest` to 2026.3.17.
|
||||
|
||||
- Update `cargo-insta@latest` to 1.47.0.
|
||||
|
||||
## [2.69.12] - 2026-03-27
|
||||
|
||||
- Update `uv@latest` to 0.11.2.
|
||||
@@ -6041,7 +6057,10 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.69.12...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.70.0...HEAD
|
||||
[2.70.0]: https://github.com/taiki-e/install-action/compare/v2.69.14...v2.70.0
|
||||
[2.69.14]: https://github.com/taiki-e/install-action/compare/v2.69.13...v2.69.14
|
||||
[2.69.13]: https://github.com/taiki-e/install-action/compare/v2.69.12...v2.69.13
|
||||
[2.69.12]: https://github.com/taiki-e/install-action/compare/v2.69.11...v2.69.12
|
||||
[2.69.11]: https://github.com/taiki-e/install-action/compare/v2.69.10...v2.69.11
|
||||
[2.69.10]: https://github.com/taiki-e/install-action/compare/v2.69.9...v2.69.10
|
||||
|
||||
4
main.sh
4
main.sh
@@ -179,7 +179,7 @@ download_and_extract() {
|
||||
else
|
||||
case "${url}" in
|
||||
*.zip)
|
||||
unzip -q tmp "${bin_in_archive#\./}"
|
||||
unzip -q tmp
|
||||
for tmp in "${bin_in_archive[@]}"; do
|
||||
case "${tool}" in
|
||||
editorconfig-checker) mv -- "${tmp}" "${bin_dir}/${tool}${exe}" ;;
|
||||
@@ -763,7 +763,7 @@ for tool in "${tools[@]}"; do
|
||||
;;
|
||||
*)
|
||||
# Handle aliases.
|
||||
# NB: Update alias list in tools/publish.rs, tool input option in test-alias in .github/workflows/ci.yml,
|
||||
# NB: Update alias list in .github/workflows/release.yml, tool input option in test-alias in .github/workflows/ci.yml,
|
||||
# and match for alias for tools/codegen/src/tools-markdown.rs.
|
||||
# TODO(codegen): auto-detect cases where crate name and tool name are different.
|
||||
case "${tool}" in
|
||||
|
||||
25
manifests/cargo-insta.json
generated
25
manifests/cargo-insta.json
generated
@@ -20,10 +20,31 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/mitsuhiko/insta/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.46.3"
|
||||
"version": "1.47.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.46.3"
|
||||
"version": "1.47.0"
|
||||
},
|
||||
"1.47": {
|
||||
"version": "1.47.0"
|
||||
},
|
||||
"1.47.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE8B9FBE3D26E2",
|
||||
"hash": "fcd8a57fb21e5446c12002c0f967e7630a9e4f317814427dbf35faff3797c1d9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE8B9FBDBE4C61",
|
||||
"hash": "55db1160ab8db370d3a03491a291f04e52837b4bea13b2919068a10700b085b2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE8B9FBDFA9C5D",
|
||||
"hash": "ecdab0fe43537a15ef6bd4628d91cddd3c26ddb3fd60f9c89d5d40904139649e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE8B9FBDB8AD65",
|
||||
"hash": "579f62ab41187c8494ca8572b4d0db51e0c9b9275064758999b27fc900c9c60c"
|
||||
}
|
||||
},
|
||||
"1.46": {
|
||||
"version": "1.46.3"
|
||||
|
||||
32
manifests/just.json
generated
32
manifests/just.json
generated
@@ -22,13 +22,39 @@
|
||||
},
|
||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.48.0"
|
||||
"version": "1.48.1"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.48.0"
|
||||
"version": "1.48.1"
|
||||
},
|
||||
"1.48": {
|
||||
"version": "1.48.0"
|
||||
"version": "1.48.1"
|
||||
},
|
||||
"1.48.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE8C6D748DA58F",
|
||||
"hash": "9293e553ce401d1b524bf4e104918f72f268e3f9c6827e0055fe98d84a1b2522"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE8C6D697B40B5",
|
||||
"hash": "4c3e9c880b8fc93d7fc24abfde3c36b0cc59f6e9f8b31f7175095700f64125a7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE8C6DC96FB40D",
|
||||
"hash": "368cd9ca827cba04d9e6fc00f7ad840773c4605b6f64b9f87bdb00325d351029"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE8C6D791ED527",
|
||||
"hash": "3308721b991cf88cf2b9bbb3b31ac40550ec61a0c9b6fc011564e25e87964030"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE8C6D73E04DFD",
|
||||
"hash": "03a73339ff55bcf7411a3c940cdcb0a726d98134b87203c83a9008575434e2a8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE8C6DB1FA1AAD",
|
||||
"hash": "ed9cd54e46d65770bf0b79c051761b29f0b89a88e56e8cae4454ec7246c82160"
|
||||
}
|
||||
},
|
||||
"1.48.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
32
manifests/mise.json
generated
32
manifests/mise.json
generated
@@ -28,13 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2026.3.16"
|
||||
"version": "2026.3.17"
|
||||
},
|
||||
"2026": {
|
||||
"version": "2026.3.16"
|
||||
"version": "2026.3.17"
|
||||
},
|
||||
"2026.3": {
|
||||
"version": "2026.3.16"
|
||||
"version": "2026.3.17"
|
||||
},
|
||||
"2026.3.17": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE8BF1812CA605",
|
||||
"hash": "f416a2d27f69173b22551429d2bc712c40fc3fb639112cf76ae817baae3772e2"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE8BF1834954DF",
|
||||
"hash": "bd120908c1476f6f27ae27f4214bdbc3fb0e81b9671aaba720b994a217d28e39"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE8BF1841058BD",
|
||||
"hash": "a5e0a77fe5ac6397d6bd3413b6c9b39ac06f24649a88eed526173062960f7b85"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE8BF17E0B455B",
|
||||
"hash": "7ef20440c3e1d9f0db69e57e68e6833a9cade44fd1e97384a279660e48091f97"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE8BF18293F06F",
|
||||
"hash": "6d98cedb9c92bd7a1694c9efedc035288da87f6e19c79d15bf91449474c37ce9"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE8BF183D566EE",
|
||||
"hash": "98772d1d68d23e8f1040c62501bcd0d136cf2db3b995a5e7b6f77aca93aef060"
|
||||
}
|
||||
},
|
||||
"2026.3.16": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
49
manifests/uv.json
generated
49
manifests/uv.json
generated
@@ -1,41 +1,70 @@
|
||||
{
|
||||
"rust_crate": null,
|
||||
"rust_crate": "uv",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": "uv-x86_64-unknown-linux-musl/uv"
|
||||
"bin": [
|
||||
"uv-x86_64-unknown-linux-musl/uv",
|
||||
"uv-x86_64-unknown-linux-musl/uvx"
|
||||
]
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "uv-x86_64-apple-darwin/uv"
|
||||
"bin": [
|
||||
"uv-x86_64-apple-darwin/uv",
|
||||
"uv-x86_64-apple-darwin/uvx"
|
||||
]
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-x86_64-pc-windows-msvc.zip",
|
||||
"bin": "uv.exe"
|
||||
"bin": [
|
||||
"uv.exe",
|
||||
"uvw.exe",
|
||||
"uvx.exe"
|
||||
]
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": "uv-aarch64-unknown-linux-musl/uv"
|
||||
"bin": [
|
||||
"uv-aarch64-unknown-linux-musl/uv",
|
||||
"uv-aarch64-unknown-linux-musl/uvx"
|
||||
]
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "uv-aarch64-apple-darwin/uv"
|
||||
"bin": [
|
||||
"uv-aarch64-apple-darwin/uv",
|
||||
"uv-aarch64-apple-darwin/uvx"
|
||||
]
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-aarch64-pc-windows-msvc.zip",
|
||||
"bin": "uv.exe"
|
||||
"bin": [
|
||||
"uv.exe",
|
||||
"uvw.exe",
|
||||
"uvx.exe"
|
||||
]
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||
"bin": "uv-powerpc64le-unknown-linux-gnu/uv"
|
||||
"bin": [
|
||||
"uv-powerpc64le-unknown-linux-gnu/uv",
|
||||
"uv-powerpc64le-unknown-linux-gnu/uvx"
|
||||
]
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||
"bin": "uv-riscv64gc-unknown-linux-gnu/uv"
|
||||
"bin": [
|
||||
"uv-riscv64gc-unknown-linux-gnu/uv",
|
||||
"uv-riscv64gc-unknown-linux-gnu/uvx"
|
||||
]
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"url": "https://github.com/astral-sh/uv/releases/download/${version}/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||
"bin": "uv-s390x-unknown-linux-gnu/uv"
|
||||
"bin": [
|
||||
"uv-s390x-unknown-linux-gnu/uv",
|
||||
"uv-s390x-unknown-linux-gnu/uvx"
|
||||
]
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/astral-sh/uv/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)",
|
||||
|
||||
26
manifests/wasm-bindgen.json
generated
26
manifests/wasm-bindgen.json
generated
@@ -44,10 +44,32 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.2.114"
|
||||
"version": "0.2.115"
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.114"
|
||||
"version": "0.2.115"
|
||||
},
|
||||
"0.2.115": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE8C5096D0CA3A",
|
||||
"hash": "494df943e4e30a48ea2832e5a299e0e0f52d23f1e037b052cf401f467b820316"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE8C5096BDCCC1",
|
||||
"hash": "bc9ba4f200a7a7132b61a28d0fc93692caeb880c1547fb4369f18baa3285eb91"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE8C5096A81344",
|
||||
"hash": "370ebd36ffc110346956407793064e3d0b5e77c83ca69ef127a286a665d13636"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE8C5096CD7296",
|
||||
"hash": "f4cc35232554e04d72b61158bcd314ef2b1aa28e7c45d7aad8e76eb01b42c299"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE8C5096F6C51A",
|
||||
"hash": "1184392b5468ca63b65f75f95f38110005aa168f6d9c39ca70c0585044d6508b"
|
||||
}
|
||||
},
|
||||
"0.2.114": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"repository": "https://github.com/astral-sh/uv",
|
||||
"license_markdown": "[Apache-2.0](https://github.com/astral-sh/uv/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)",
|
||||
"tag_prefix": "",
|
||||
"rust_crate": "${package}",
|
||||
"version_range": ">= 0.8.16",
|
||||
"signing": {
|
||||
"version_range": ">= 0.9.13",
|
||||
@@ -11,42 +12,26 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"asset_name": "${package}-${rust_target}.tar.gz",
|
||||
"bin": [
|
||||
"${package}-${rust_target}/${package}${exe}",
|
||||
"${package}-${rust_target}/${package}x${exe}"
|
||||
],
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {
|
||||
"asset_name": "${package}-x86_64-unknown-linux-musl.tar.gz",
|
||||
"bin": "${package}-x86_64-unknown-linux-musl/${package}${exe}"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"asset_name": "${package}-x86_64-apple-darwin.tar.gz",
|
||||
"bin": "${package}-x86_64-apple-darwin/${package}${exe}"
|
||||
},
|
||||
"x86_64_linux_musl": {},
|
||||
"x86_64_macos": {},
|
||||
"x86_64_windows": {
|
||||
"asset_name": "${package}-x86_64-pc-windows-msvc.zip",
|
||||
"bin": "${package}${exe}"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"asset_name": "${package}-aarch64-unknown-linux-musl.tar.gz",
|
||||
"bin": "${package}-aarch64-unknown-linux-musl/${package}${exe}"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"asset_name": "${package}-aarch64-apple-darwin.tar.gz",
|
||||
"bin": "${package}-aarch64-apple-darwin/${package}${exe}"
|
||||
"asset_name": "${package}-${rust_target}.zip",
|
||||
"bin": ["${package}${exe}", "${package}w${exe}", "${package}x${exe}"]
|
||||
},
|
||||
"aarch64_linux_musl": {},
|
||||
"aarch64_macos": {},
|
||||
"aarch64_windows": {
|
||||
"asset_name": "${package}-aarch64-pc-windows-msvc.zip",
|
||||
"bin": "${package}${exe}"
|
||||
"asset_name": "${package}-${rust_target}.zip",
|
||||
"bin": ["${package}${exe}", "${package}w${exe}", "${package}x${exe}"]
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"asset_name": "${package}-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||
"bin": "${package}-powerpc64le-unknown-linux-gnu/${package}${exe}"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"asset_name": "${package}-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||
"bin": "${package}-riscv64gc-unknown-linux-gnu/${package}${exe}"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"asset_name": "${package}-s390x-unknown-linux-gnu.tar.gz",
|
||||
"bin": "${package}-s390x-unknown-linux-gnu/${package}${exe}"
|
||||
}
|
||||
"powerpc64le_linux_gnu": {},
|
||||
"riscv64_linux_gnu": {},
|
||||
"s390x_linux_gnu": {}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user