Skip to content

GitHub Actions

Gaël Poupard edited this page Jan 25, 2021 · 8 revisions

Run GitHub actions again

In case you're facing a workflow that doesn't cancel and cannot be re-run, the only way I found is to trigger a new build using an empty commit:

git commit --allow-empty -m "chore(tests): trigger Github Actions"

I recommend using this exact commit message to ease their identification.

Required checks not triggered

Some checks are set as required to protect branches, but may not be triggered if related files are left unchanged. You'll need to use administrator privileges to merge branch.

And please, please do not drop either the required status (it's a protection rule!) nor the paths option in .yml files for workflows (it's meant to save useless runs, meaning faster checks and less energy consumed).

Clone this wiki locally