You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue-repro-triage workflow was configured with draft: true in the safe-outputs.create-pull-request section. This caused every fix PR created by the triage agent to be created as a draft.
The agent then reported a missing tool (mark_pull_request_as_ready_for_review) and the workflow registered as failed — triggering repeated failure notifications on issue #15779.
Fix
Changed draft: false in the safe-outputs configuration for create-pull-request in issue-repro-triage.md.
Recomputed the frontmatter_hash in the corresponding .lock.yml file to keep them in sync (using the same SHA-256 algorithm as gh aw compile).
The bundle file is available in the agent artifact in the workflow run linked above.
To create a pull request with the changes:
# Download the artifact from the workflow run
gh run download 25992034689 -n agent -D /tmp/agent-25992034689
# Fetch the bundle into a local branch
git fetch /tmp/agent-25992034689/aw-fix-issue-15779-no-draft-prs.bundle refs/heads/fix/issue-15779-no-draft-prs:refs/heads/fix/issue-15779-no-draft-prs-b3e6276509dc5624
git checkout fix/issue-15779-no-draft-prs-b3e6276509dc5624
# Push the branch to origin
git push origin fix/issue-15779-no-draft-prs-b3e6276509dc5624
# Create the pull request
gh pr create --title '[fix] fix: set draft: false in issue-repro-triage workflow' --base main --head fix/issue-15779-no-draft-prs-b3e6276509dc5624 --repo microsoft/vstest
Root Cause
The
issue-repro-triageworkflow was configured withdraft: truein thesafe-outputs.create-pull-requestsection. This caused every fix PR created by the triage agent to be created as a draft.The agent then reported a missing tool (
mark_pull_request_as_ready_for_review) and the workflow registered as failed — triggering repeated failure notifications on issue #15779.Fix
Changed
draft: falsein thesafe-outputsconfiguration forcreate-pull-requestinissue-repro-triage.md.Recomputed the
frontmatter_hashin the corresponding.lock.ymlfile to keep them in sync (using the same SHA-256 algorithm asgh aw compile).Changes
.github/workflows/issue-repro-triage.md:draft: true→draft: false.github/workflows/issue-repro-triage.lock.yml: updatedfrontmatter_hashand all embedded"draft":trueconfig values tofalseFixes #15779
Warning
Firewall blocked 2 domains
The following domains were blocked by the firewall during workflow execution:
pypi.orgreleaseassets.githubusercontent.comSee Network Configuration for more information.
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download bundle artifact
The bundle file is available in the
agentartifact in the workflow run linked above.To create a pull request with the changes: