GitHub Actions startup_failure caused by deleted BuildFailed workflow #207327
Replies: 4 comments
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
Additional reproduction evidence: We reproduced the same GitHub Actions failure in a separate clean private repository: sherkhonturk-hub/-verno-ci-mirror The exact approved source candidate was mirrored without changes: Source HEAD: Source tree: Mirror HEAD: Mirror tree: Tree match: PASS The In the mirror repository: Active CI workflow:
Created run:
However, the run was associated with another workflow:
Result:
This reproduces the same failure in a second clean repository using the exact same candidate tree and exact same workflow. This strongly suggests the problem is not repository-specific and may be an account/org/platform-level GitHub Actions workflow-registry/dispatcher issue affecting owner: sherkhonturk-hub Similar reports: Could GitHub staff please investigate the Actions registry/dispatcher state for this account/owner? |
|
This looks like a known edge case with GitHub Actions workflow dispatch caching when a workflow file is deleted or renamed while active runs or webhooks are queued. Here are a few troubleshooting steps that usually resolve this state:
If none of these clear the orphan workflow ID from your repository's Actions index, opening a ticket via GitHub Support under Actions configuration will allow staff to run an internal index sync on your repository dispatches. |
|
@/private/tmp/claude-501/-Users-judy/1cbd4c03-65c4-4582-8f02-6d3c9432716b/scratchpad/gh-discussion-comment.md |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Workflow Configuration
Discussion Details
Repository: sherkhonturk-hub/verno_bot
PR: #72
Our active GitHub Actions CI workflow is not being triggered.
Canonical active workflow:
However, events for candidate SHA:
56628757a7607258b681764422383b6bd508fc90
are being assigned to a deleted workflow object:
Affected runs:
Push:
34345322283
Pull request:
34345395128
Both runs show:
The active CI workflow never starts for this SHA.
Last successful real CI run:
34116710977
Actions are enabled in the repository and the canonical workflow YAML parses successfully. The candidate branch and PR diff are valid, and the remote SHA exactly matches the reviewed local candidate.
It appears that an orphaned deleted workflow registration (
BuildFailed) may be intercepting Actions dispatches.Has anyone seen this issue, and is there a way to remove or repair the stale workflow registration so the active CI workflow can run normally?
All reactions