I did a misconfiguration with concurrency
, initially in the root of my GitHub Actions workflow, and moved to a sub workflow (workflow_call
).
Since, I have a workflow that is stuck with label:
I tried to cancel it with gh
official CLI, response: gh: Cannot cancel a workflow run that is completed. (HTTP 409)
I also found this other workflow to be stuck, I also tried to cancel it with github api response : {}
Since all my following workflow are stuck.
According to GitHub, it is possible to force cancel a workflow using the API, but this doesn't work.
This is the more detailled force cancel workflow documentation.
How can I force stop a GitHub Actions workflow?
Update Jira Issue
step (with the whole job as well) to see how it was configured? It looks like the workflow is waiting for a manual approval from an environment, is it correct? – Antimonydev_on_push_workflow_main.yml
– Gervais