Replies: 5 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. ⭐ |
|
This is GitHub's synthetic "BuildFailed" fallback, not your configuration. The signature you're seeing — workflow name There's no user-side fix, because the run never reaches your code. What to do:
Bottom line: stop re-probing in your repo — you've already proven it's not your workflow. This needs GitHub staff. |
|
Thank you, this is very helpful. I agree with your assessment. I already tested a brand-new minimal workflow on a temporary diagnostic branch, and it failed with the same BuildFailed signature before job creation:
So this does appear to happen before any workflow job exists, and does not look specific to my YAML, runner, secrets, or runs-on configuration. I will stop re-probing the repository and wait for GitHub staff / platform-side investigation. For reference, the affected run IDs I captured are:
All of them show the same BuildFailed / startup_failure / jobs: 0 pattern. Thanks again. |
|
Perfect — those four run IDs plus the signature tuple are exactly what staff will need, so you're set up well for the investigation. One more thing worth adding to your ticket: cross-reference #208368 — a second repo showing the identical Good luck — hope it clears soon. 👍 |
|
That shape — I hit this today and spent a while chasing a corrupted workflow registration. It wasn't that. A Worth ruling out before you go further: open one of the failed runs and check whether it carries If there's no annotation like that, then it's something else and you can ignore me. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Workflow Configuration
Discussion Details
Hello,
I’m seeing an unusual GitHub Actions issue in a private repository.
The repository has an existing active workflow under:
.github/workflows/
The workflow file is present and valid, and GitHub Actions is enabled for the repository.
However, when a workflow should run, GitHub does not associate the run with the active workflow.
Instead, the run appears with:
The failure happens before any job is created.
To rule out a problem with the existing workflow configuration, I also created a completely separate temporary branch with a brand-new minimal workflow.
The workflow contained only:
Example:
All reactions