Show how to run GitHub Actions CI workflows

This commit is contained in:
Graham Christensen 2021-10-26 13:14:50 -04:00 committed by Cole Helbling
parent 64a8cc193d
commit 7a2785317e
1 changed files with 12 additions and 0 deletions

View File

@ -33,3 +33,15 @@ jobs:
uses: DeterminateSystems/update-flake-lock@v3 uses: DeterminateSystems/update-flake-lock@v3
``` ```
## Running GitHub Actions CI
GitHub Actions will not run workflows when a branch is pushed or a PR is opened by a GitHub Action. To work around this, try:
```
git branch -D update_flake_lock_action
git fetch origin
git checkout update_flake_lock_action
git commit --amend --no-edit
git push origin update_flake_lock_action --force
```