Replies: 3 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. ⭐ |
|
Another confirmed case on a private repository, observed 2026-09-10 (MYT). Symptoms match this report exactly:
We are not posting the private repository name or source code publicly. GitHub staff can correlate the workflow/run IDs above from the account if needed. This appears to require backend workflow-registry/dispatch re-indexing or removal of the orphaned |
|
We have the same GitHub Actions startup/dispatch failure in another private repository. Repository: Affected workflow: Related reusable workflow: Observed behavior:
Affected manual-dispatch run: Affected push run: Check suite: The check suite reports: The failed run references the legitimate reusable workflow at the exact main SHA: Repository Actions are enabled and allowed_actions is "all". The failure has been occurring since August 2026, including before our latest repository changes. This looks very similar to the orphaned/synthetic BuildFailed workflow issue described in this discussion. We have not yet found a BuildFailed workflow in the normal workflow registry; the normal registry only returns our two active workflows. Could someone advise how to determine whether a hidden/deleted BuildFailed workflow registration exists for our repository, or whether GitHub needs to re-index/repair the repository's Actions workflow dispatch state? We are deliberately not changing the workflow YAML because the failure occurs before any job or check run is created. Thank you. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Workflow Configuration
Discussion Details
Repository: Mediina42/problema-minero
Visibility: Private
Default branch: main
Every GitHub Actions event in this repository fails immediately before any job is created.
Symptoms:
A real pull request exists:
PR #1: implementacion-nivel2 -> main
I also tested a minimal independent workflow:
name: CI probe
on:
pull_request:
branches: [main]
jobs:
probe:
runs-on: ubuntu-latest
steps:
- run: echo "GitHub Actions works"
This workflow contains:
It still fails exactly the same way:
The workflow registry reports:
workflow id: 350836832
name: ""
path: BuildFailed
state: deleted
The normal workflow list returns zero registered workflows.
The workflow files were independently validated with actionlint v1.7.12 and show no syntax/schema errors.
Actions permissions:
enabled: true
allowed_actions: all
Example affected run IDs:
This appears to be a stale/orphaned GitHub Actions backend registration or repository-level dispatch issue.
Could GitHub staff please check workflow ID 350836832 and re-index or purge the stale BuildFailed registration for this repository?
All reactions