Replies: 1 comment 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. ⭐ |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
ARC (Actions Runner Controller)
Discussion Details
Hi,
I have a private repository where GitHub Actions workflows are registered as active, but every workflow run fails immediately before any job is created.
Repository:
https://github.com/mipupa/application-foundation
Valid workflow:
Example failed run:
The failed run is associated with a synthetic workflow entry:
Repository Actions permissions:
I also created a completely minimal independent test workflow:
name: actions-probe
on:
workflow_dispatch:
jobs:
probe:
runs-on: ubuntu-latest
steps:
- run: echo "GitHub Actions works"
This workflow was successfully registered:
However, a manual workflow_dispatch run also failed almost immediately:
The main workflow has also been validated locally, and the project quality gates pass locally.
This looks like a repository-level GitHub Actions dispatcher/registry issue rather than an error inside the workflow jobs themselves.
Could someone please advise whether this is related to a stale/orphaned BuildFailed workflow registration, a repository-level Actions issue, or another GitHub-side problem?
Thanks.
All reactions