Replies: 2 comments 1 reply
|
💬 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. ⭐ |
0 replies
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Workflow Configuration
Discussion Details
I'm seeing a persistent GitHub Actions
startup_failurein the repositoryerimes84/ViradaFs.The failure happens before any job is created or assigned to a runner.
Previously working
The repository had a working workflow:
ViradaFS CI.github/workflows/ci.yml34875486633678517361a6fc568a9c931a8875b31eaa017e7a2927b4f0c9That run completed successfully on self-hosted Linux and Windows runners.
Current behavior
GitHub now creates synthetic workflow runs with:
BuildFailed348819625startup_failure0For example:
33692629543bbadf0d2915dd6f96b438da6e7eec7455983ca3estartup_failureThe self-hosted runners remain online and Idle.
Troubleshooting already performed
We have already:
Allow all actions and reusable workflowsis enabled;Isolated reproduction
To rule out a problem specific to the existing pull request, I created a completely new branch from
mainand a new Draft PR containing only a Markdown file.#198a033e1e5d4917ac096fa86b8a490c1368779f25933692832336348819625startup_failure0The isolated PR reproduced exactly the same problem.
No workflow file was modified in that test.
Why this looks like a backend workflow registration issue
The same repository previously executed
.github/workflows/ci.ymlsuccessfully under workflow_id348754866.Now new push and pull_request events are consistently associated with workflow_id
348819625, pathBuildFailed, and fail before GitHub creates any jobs.Could workflow_id
348819625be an orphaned or corrupted internal workflow registration?Is there a way to purge/reset this workflow registration for the repository, or does this require intervention from GitHub Support?
Similar reports found
I searched the GitHub Community before opening this report and found several very similar cases:
BuildFailedworkflow (deleted state) intercepts all events — no jobs start repo-wideBuildFailedruns on all repositoriesstartup_failureruns on every pushBuildFailed/startup_failure)Discussion #206103 in particular appears to describe almost exactly the same behavior.
All reactions