Ability to re-run/trigger a GitHub Actions Workflow #3113
notlmn posted onGitHub
Explanation
GitHub Actions API has the ability to re-run a specific workflow, but the GitHub UI doesn't have any option to re-run a workflow unless the workflow has some failed jobs inside it.
(Well, GitHub doesn't exactly let you re-run the entire workflow, only specific failed jobs inside it, which is no exposed in their API).
The feature adds a button that should:
- be available on workflow (example), preferably beside "create status badge" dropdown.
- be enabled if the workflow is is not running.
- be disabled if the workflow is already running.
Sample screenshots
Re-running workflows
Triggering new workflows
How can this be used?
- Testing pull requests.
- Triggering manual builds for publishing extensions, that we used to do on Travis for hotfixes.
People do seem to need this for their own reasons (GH forum).
Existing alternatives
- Something that uses repository dispatch events.
- Something that uses in-UI tricks to trigger events.
- Using empty dummy commits.
These "tricks" work, but they do not work on specific run that we want to re-run or require adding new actions to handle them.
Things I'm not sure about
There are basically two "types" or "ways" of running a workflow (if you could call them that)
- "re-running" an existing workflow (which is previously failed or has passed), from first screenshot above
- "creating" a new workflow run, that is done on a per-branch basis, this is related to Travis' "Trigger Build", second screenshot above.
Option 1 can be easily done, now sure how we can tackle option 2 (which also may not be possible).