GitHub Actions events routed to synthetic BuildFailed workflow with 0 jobs #207628
Replies: 2 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 cross-domain evidence strengthens the repository-level routing diagnosis. This is now confirmed to affect not only pull_request events but also a normal push event generated by a Shared recovery probe. Normal push recovery probeBranch: Exact SHA: Run: Event: Result:
So the problem is not limited to PR event handling. Independent Store Client PR also affectedPR #284 has now advanced to exact head:
Its latest PR run:
also resolves to:
This means the same synthetic workflow is now affecting:
while the legitimate active workflow previously executed successfully on canonical. This further reduces the likelihood of a Domain-specific PR/content issue and points to repository-level GitHub Actions workflow registration / event-dispatch state. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Workflow Configuration
Discussion Details
We are seeing what appears to be a GitHub Actions workflow-registration / event-dispatch failure in a private repository.
Symptoms
New
pushandpull_requestevents are no longer dispatched to the repository's legitimate active workflow.Instead, GitHub creates runs associated with a synthetic/deleted workflow record:
356217915BuildFailedstartup_failure0Active workflow
The legitimate active workflow is:
333213605.github/workflows/finance-v1-phase0.ymlIt previously ran successfully on the current canonical branch.
Last known successful run:
34613310625a6ed2684ef94e9c38aa350cd418ea8010efcb6c5successAffected runs
PR event:
3466271766813c3e4f657cfdeeaedb5fd075d3813f816d68c81startup_failure0Another PR event:
346683556691533936fdf42f6933549b08e2203b2124a30dd2estartup_failure0Push event for the same SHA:
34668353616startup_failure0Exact-SHA recovery probe:
34668960208BuildFailedworkflow0What we verified
all.403 This workflow run cannot be retriedBuildFailedrouting.This does not appear to be a YAML parsing or application-code issue because the same workflow content previously ran successfully and current events are being associated with a different synthetic workflow ID.
Expected behavior
pushandpull_requestevents should dispatch to active workflow333213605and create its normal jobs.Actual behavior
Events are routed to workflow
356217915/BuildFailed, immediately ending asstartup_failurewith zero jobs.Request
Is there a known GitHub Actions backend issue where an orphaned/deleted synthetic workflow registration intercepts repository events?
If this requires GitHub-side repair, could the repository's workflow registration / dispatcher mapping be reindexed or reset so events route to the active workflow again?
I found similar recent reports describing the same
BuildFailed/startup_failure/ zero-job behavior.All reactions