fix(workflows): silence issue-triage-agent no-op runs in #63#119
Merged
Conversation
Add safe-outputs.noop.report-as-issue: false to the issue triage agent workflow so its weekday no-op runs no longer post a comment to the [aw] No-Op Runs tracking issue (#63). The agent legitimately finds nothing to triage on most runs; flooding the tracking issue with 'no action needed' comments is noise. Recompiled the lock file with gh-aw v0.72.1 (matching the repo's pinned compiler_version), which also pinned github/gh-aw-actions/setup@v0.72.1 by SHA in actions-lock.json. Fixes #63
Contributor
✅ Review — LGTMVerified the 3-file change:
No functional concerns. Ready to merge. |
sendtoshailesh
approved these changes
May 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Issue Triage Agent runs on a weekday cron and finds nothing to triage on most invocations (all open issues are already labeled or assigned). Each of those runs currently posts a
no action neededcomment to the [aw] No-Op Runs tracking issue (#63), which has produced a steady stream of noise.This PR adds the documented opt-out for that behavior.
Change
Recompiled the lock file with the repo-pinned
gh-awv0.72.1 (gh aw compile). The compiler also pinnedgithub/gh-aw-actions/setup@v0.72.1by SHA in.github/aw/actions-lock.json(it was previously using the bare tag), which is a small hardening side effect within the same version.Verification
compiler_versionin the lock file remains atv0.72.1.GH_AW_NOOP_REPORT_AS_ISSUE: "false"is present in the compiled lock yml.\"noop\":{\"max\":1,\"report-as-issue\":\"false\"}.Closes
Fixes #63