-
Why are you starting this discussion?Bug What GitHub Actions topic or product is this about?Misc Discussion DetailsI have my github actions unmodified, but since today I cannot trigger the workflow manually anymore. Clicking the green "Run Workflow" button does nothing. This affects all my workflows. Anyone else have the same issue? Clicking the green "Run Workflow" button does nothing, no error. I was hoping to do a release today, hope this gets fixed soon |
Beta Was this translation helpful? Give feedback.
Replies: 20 comments 3 replies
-
|
💬 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. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
same here +1 |
Beta Was this translation helpful? Give feedback.
-
|
I am getting this too. on Agree, looks like a frontend issue? |
Beta Was this translation helpful? Give feedback.
-
|
Same here |
Beta Was this translation helpful? Give feedback.
-
|
For context I've tried clearing the cache, disabling all extensions, using a different browser, and renaming the workflow. |
Beta Was this translation helpful? Give feedback.
-
|
This looks like a general issue. |
Beta Was this translation helpful? Give feedback.
-
|
Hey everyone 👋 curl -X POST \ This should trigger the same workflow even when the UI button is broken. |
Beta Was this translation helpful? Give feedback.
-
|
Spent half an hour trying to figure out what's wrong on my end, good to know it's on GitHub's. |
Beta Was this translation helpful? Give feedback.
-
Due to the feature breaking unexpectedly, I was required to respond during my lunchtime on a day off. |
Beta Was this translation helpful? Give feedback.
-
|
Spent a long time scratching my head about this. Working from Github Mobile! |
Beta Was this translation helpful? Give feedback.
-
|
Same here. This is quite frustrating. |
Beta Was this translation helpful? Give feedback.
-
|
You can trigger the workflow using GitHub API. curl --location 'https://api.github.com/repos/{OWNER_NAME}/{REPO_NAME}/actions/workflows/{WORKFLOW_FILE_NAME}/dispatches' \
--header 'Accept: application/vnd.github+json' \
--header 'Authorization: Bearer <GITHUB_PAT>' \
--header 'Content-Type: application/json' \
--data '{
"ref": "{BRANCH_NAME or TAG_NAME}",
"inputs": {
... if you need to pass any inputs to the workflow
}
}'If you want to deploy a branch (and not tag), GitHub mobile also works. |
Beta Was this translation helpful? Give feedback.
-
|
I am experiencing the same issue for approximately the past hour |
Beta Was this translation helpful? Give feedback.
-
|
it is our halloween weekend present. spooky! edit: I was finally able to trigger the workflows by downloading the Github android app. That seems to be the easiest workaround for now. I'm sure the API curl method works too, but it's a bit too janky to use with so many different workflows. |
Beta Was this translation helpful? Give feedback.
-
|
FYI, GraphQL explorer is scheduled for removal from API doc today |
Beta Was this translation helpful? Give feedback.
-
|
The same issue for the past hour. |
Beta Was this translation helpful? Give feedback.
-
|
As workaround: |
Beta Was this translation helpful? Give feedback.
-
|
i have to use mobile app to get my workflow running !!! |
Beta Was this translation helpful? Give feedback.
-
|
I am now again able to manually run workflows on the GitHub website |
Beta Was this translation helpful? Give feedback.
-
|
1️⃣ Short-term solutions (to get your workflows running now) Use the GitHub mobile app: Install GitHub on Android or iOS and trigger the workflow from there. Use the REST API (manual trigger): Run your workflow using a curl command: curl -X POST Replace <YOUR_TOKEN> with your GitHub Personal Access Token Replace with the repository owner Replace with the repository name Replace <WORKFLOW_FILE> with your workflow filename "ref":"main" is your branch or tag name Use VSCode extension: If you use VSCode, the GitHub Actions extension allows you to trigger workflows directly from the editor. 2️⃣ Browser fixes (if you want to try web) Clear browser cache or try Incognito mode Try a different browser (Chrome, Firefox, Edge) Temporarily disable browser extensions 3️⃣ Long-term This is a GitHub frontend bug. They will fix it in a future update. Until then, mobile app or API is the most reliable workaround. |
Beta Was this translation helpful? Give feedback.


it is our halloween weekend present. spooky!
edit: I was finally able to trigger the workflows by downloading the Github android app. That seems to be the easiest workaround for now. I'm sure the API curl method works too, but it's a bit too janky to use with so many different workflows.