How can I force a new CI run?#

How can I force a new CI run?

For unrelated reasons my pull request failed, how can I force a new run in CI?

Rebase or force push

If new commits have been added to the repository in the meantime, just rebase your branch, e.g.

$ git fetch && git rebase origin/scarthgap

If no new commits have been added run

$ git commit --amend --no-edit && git push --force