Fix skipped assign to agent step #12458
Merged
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.
Fix skipped assign to agent step
Investigation shows that the agent didn't call
assign_to_agentin workflow run https://github.com/githubnext/gh-aw/actions/runs/21467408567/job/61832573819.Root Cause
The workflow instructions at Step 4 said:
create_issue, store the returned issue number"But
create_issuereturns a temporary ID (e.g.,aw_sec2026012901), not a final issue number. This ambiguous language may have confused the agent about what value to pass toassign_to_agent.Solution
create_issueChanges Made
security-alert-burndown.mdStep 4 instructions:aw_sec2026012901)"<new_issue_number>to<temporary_id_from_create_issue>assign_to_agent(issue_number="aw_sec2026012901", name="copilot").lock.ymlfileVerification
The agent will now have clear, explicit instructions to use the temporary ID returned from
create_issuewhen calling bothupdate_projectandassign_to_agent.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.