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, and then the agent tried to call a non-existent mark_pull_request_as_ready_for_review tool, causing repeated failures.
Fix
Changed draft: true → draft: false in:
.github/workflows/issue-repro-triage.md (source)
.github/workflows/issue-repro-triage.lock.yml (compiled config, both JSON config sections updated)
Also updated description text that referenced "draft PRs" to accurately reflect the new behavior.
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 25993063963 -n agent -D /tmp/agent-25993063963
# Fetch the bundle into a local branch
git fetch /tmp/agent-25993063963/aw-fix-issue-15779-no-draft-prs.bundle refs/heads/fix/issue-15779-no-draft-prs:refs/heads/fix/issue-15779-no-draft-prs-8b2b240fb06acd1c
git checkout fix/issue-15779-no-draft-prs-8b2b240fb06acd1c
# Push the branch to origin
git push origin fix/issue-15779-no-draft-prs-8b2b240fb06acd1c
# 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-8b2b240fb06acd1c --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, and then the agent tried to call a non-existentmark_pull_request_as_ready_for_reviewtool, causing repeated failures.Fix
Changed
draft: true→draft: falsein:.github/workflows/issue-repro-triage.md(source).github/workflows/issue-repro-triage.lock.yml(compiled config, both JSON config sections updated)Also updated description text that referenced "draft PRs" to accurately reflect the new behavior.
Fixes #15779
Closes #15817
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: