fix: disable no-op issue reporting for catalog submission workflows#2748
Merged
Conversation
Add noop: report-as-issue: false to safe-outputs frontmatter in both add-community-extension and add-community-preset workflows to prevent them from posting noise comments to the [aw] No-Op Runs tracking issue. Closes github#2747
Contributor
There was a problem hiding this comment.
Pull request overview
This PR suppresses no-op issue reporting for the community catalog submission agentic workflows, reducing noise in the automated no-op tracking issue while preserving normal workflow behavior.
Changes:
- Adds
safe-outputs.noop.report-as-issue: falseto the community extension submission workflow. - Adds the same no-op reporting configuration to the community preset submission workflow.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/add-community-extension.md |
Disables reporting no-op extension workflow runs as issue comments. |
.github/workflows/add-community-preset.md |
Disables reporting no-op preset workflow runs as issue comments. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 0
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
Add
noop: report-as-issue: falseto thesafe-outputsfrontmatter in both catalog submission workflows to prevent them from posting noise comments to the [aw] No-Op Runs tracking issue (#2746).Changes
.github/workflows/add-community-extension.md— addednoop: report-as-issue: false.github/workflows/add-community-preset.md— addednoop: report-as-issue: falseContext
Both workflows trigger on
issues: [labeled]and correctly exit as no-ops when the issue isn't a submission for them. However, they were reporting those no-ops to the tracking issue, creating noise like:The tracking issue itself documents the fix: set
report-as-issue: falsein the noop safe-output.Closes #2747