Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-python-versions.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .github/workflows/check-python-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ safe-outputs:
draft: true
noop:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📍 .github/workflows/check-python-versions.md:27
The Advocate flagged a genuine trade-off here: this workflow's Step 1 instructs the agent to "call the noop safe output with the error and stop" on a fetch/parse failure. Previously such a failure surfaced as a visible issue; with report-as-issue: false it now only logs in a run that fires once a year, so a real failure could go unnoticed until the next annual run. For the other two workflows no-op purely means "nothing to do" and suppression is clearly correct, but here the no-op channel doubled as an error alarm. Consider a conscious decision — e.g. keep issue-reporting where no-op encodes an error, or add a separate failure notification. Non-blocking.

[verified]

max: 1
report-as-issue: false
---

# Annual Python Version Update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extension-template-sync.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .github/workflows/extension-template-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ network:
safe-outputs:
create-issue:
max: 10
noop:
report-as-issue: false
steps:
- name: Checkout repository
uses: actions/checkout@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-triage.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .github/workflows/issue-triage.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ safe-outputs:
run-started: "⏳ **Triage Issue Agent**: I will analyze this issue and determine if related issues exist in this repo, the upstream Python tool, or similar extensions. This may take a couple of minutes."
add-comment:
max: 1
noop:
report-as-issue: false
steps:
- name: Checkout repository
uses: actions/checkout@v5
Expand Down
Loading