From e6da6f30a279669c76a475114ce8a5b3c8987db9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 13:21:42 +0000 Subject: [PATCH] Version Packages --- .changeset/marketplace-description.md | 9 --------- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 .changeset/marketplace-description.md diff --git a/.changeset/marketplace-description.md b/.changeset/marketplace-description.md deleted file mode 100644 index 775036a..0000000 --- a/.changeset/marketplace-description.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'github-actions-annotations-reporter': patch ---- - -Two Action-side fixes: - -- **Marketplace listing:** Shorten the `description` field in `action.yml` to fit the GitHub Marketplace constraint (≤125 chars). The previous 199-char description was rejected at publish time as "missing a proper description". Same scope, fewer words: "Turn workflow annotations into dedup-aware GitHub Issues — severity-labeled, won't-fix-aware, auto-closing when noise stops." - -- **Dispatcher reliability:** Replace the `npx -y -p PKG BIN` invocation in the composite action's bash dispatcher with an explicit `npm install --prefix ` followed by a direct `node_modules/.bin/ghaar` call. On `ubuntu-latest` runners (which ship npm 10.x in the ubuntu-24.04 image), both `npx -p` and `npm exec --package=` were observed to skip the install step and fall through to `sh -c "ghaar …"` → `command not found` → exit 127. The explicit install + direct bin invocation bypasses every bin-resolution code path and works identically on npm 10 and 11. No behavior change for callers; the action's inputs / outputs / env contracts are unchanged. diff --git a/CHANGELOG.md b/CHANGELOG.md index 788b8f4..cf08871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # github-actions-annotations-reporter +## 1.0.2 + +### Patch Changes + +- 3f05e30: Two Action-side fixes: + - **Marketplace listing:** Shorten the `description` field in `action.yml` to fit the GitHub Marketplace constraint (≤125 chars). The previous 199-char description was rejected at publish time as "missing a proper description". Same scope, fewer words: "Turn workflow annotations into dedup-aware GitHub Issues — severity-labeled, won't-fix-aware, auto-closing when noise stops." + - **Dispatcher reliability:** Replace the `npx -y -p PKG BIN` invocation in the composite action's bash dispatcher with an explicit `npm install --prefix ` followed by a direct `node_modules/.bin/ghaar` call. On `ubuntu-latest` runners (which ship npm 10.x in the ubuntu-24.04 image), both `npx -p` and `npm exec --package=` were observed to skip the install step and fall through to `sh -c "ghaar …"` → `command not found` → exit 127. The explicit install + direct bin invocation bypasses every bin-resolution code path and works identically on npm 10 and 11. No behavior change for callers; the action's inputs / outputs / env contracts are unchanged. + ## 1.0.1 ### Patch Changes diff --git a/package.json b/package.json index 3ff09b5..f1584c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-actions-annotations-reporter", - "version": "1.0.1", + "version": "1.0.2", "description": "Scans the latest GitHub Actions workflow runs for annotations and files dedup-aware GitHub Issues, with severity filters, won't-fix history-aware suppression, and auto-close when annotations vanish.", "keywords": [ "github-actions",