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 had draft: true in the safe-outputs.create-pull-request configuration. This caused every auto-fix PR to be created as a draft. The agent then attempted to use a mark_pull_request_as_ready_for_review tool that doesn't exist, causing repeated workflow failures documented in #15779.
Fix
Changed draft: true → draft: false in .github/workflows/issue-repro-triage.md and updated all corresponding values in the compiled .lock.yml file (embedded config JSON, description strings, and env variables).
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 25992823982 -n agent -D /tmp/agent-25992823982
# Fetch the bundle into a local branch
git fetch /tmp/agent-25992823982/aw-fix-issue-15779-draft-false.bundle refs/heads/fix/issue-15779-draft-false:refs/heads/fix/issue-15779-draft-false-aa49218acf5b90d7
git checkout fix/issue-15779-draft-false-aa49218acf5b90d7
# Push the branch to origin
git push origin fix/issue-15779-draft-false-aa49218acf5b90d7
# Create the pull request
gh pr create --title '[fix] fix: set draft: false in issue-repro-triage workflow' --base main --head fix/issue-15779-draft-false-aa49218acf5b90d7 --repo microsoft/vstest
Root Cause
The
issue-repro-triageworkflow haddraft: truein thesafe-outputs.create-pull-requestconfiguration. This caused every auto-fix PR to be created as a draft. The agent then attempted to use amark_pull_request_as_ready_for_reviewtool that doesn't exist, causing repeated workflow failures documented in #15779.Fix
Changed
draft: true→draft: falsein.github/workflows/issue-repro-triage.mdand updated all corresponding values in the compiled.lock.ymlfile (embedded config JSON, description strings, and env variables).Changes
.github/workflows/issue-repro-triage.md:draft: true→draft: false; updated description and agent instructions.github/workflows/issue-repro-triage.lock.yml: updated all embedded"draft":trueconfig values tofalseand related description stringsFixes #15779
Closes #15797
Closes #15799
Closes #15807
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: