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
When a workflow_dispatch run partially fails and an operator re-dispatches against the same issue_number, prior-run state (repo-memory, summary comments on the bound issue, or both) can cause the agent to conclude the work is already done and emit a noop. There is no mechanism to force a fresh evaluation.
This is a feature request for an explicit force-rerun semantic, not a bug report about any single component.
None of these cover the case where the agent does read the bound issue but concludes the work is already done based on prior-run artifacts.
Suggested approaches
Explicit force-rerun flag: a workflow_dispatch input or workflow-level config (e.g. force_fresh: true) that tells the agent to recompute from current repo state, ignoring prior completion signals for this issue.
Run-aware context handling: tag repo-memory entries and safe-output comments with run metadata so prior-run summaries aren't treated as authoritative for new runs.
Feature request
When a
workflow_dispatchrun partially fails and an operator re-dispatches against the sameissue_number, prior-run state (repo-memory, summary comments on the bound issue, or both) can cause the agent to conclude the work is already done and emit a noop. There is no mechanism to force a fresh evaluation.This is a feature request for an explicit force-rerun semantic, not a bug report about any single component.
Observed behavior
Repo:
Aurrin-Ventures/aurrin-platform, workflow:prd-decomposer, gh-aw v0.62.5, engine: copilot (gpt-5).issue_number=5failure.issue_number=5success.issue_number=5memory/prd-decomposer. Agent still produced no output, onlymissing_tool. 0 issues created. Run:success.issue_number=28Key: deleting the memory branch alone was not enough (run 3). A clean rerun required a fresh issue with no prior comments and cleared memory branches.
Impact
workflow_dispatch issue_number=Ndoes not override prior-run state strongly enough to force a fresh passRelation to existing issues
None of these cover the case where the agent does read the bound issue but concludes the work is already done based on prior-run artifacts.
Suggested approaches
Explicit force-rerun flag: a
workflow_dispatchinput or workflow-level config (e.g.force_fresh: true) that tells the agent to recompute from current repo state, ignoring prior completion signals for this issue.Run-aware context handling: tag repo-memory entries and safe-output comments with run metadata so prior-run summaries aren't treated as authoritative for new runs.
Noop rejection guardrail: reject a
successnoop if the bound issue was never meaningfully re-evaluated in the current run — the scout report on workflow_dispatch targeted issue binding ignored — agent never reads bound issue, emits noop, workflow succeeds #21501 also identified this missing guard.Environment