From 7a2785317efb7c6c3a5e36b0d3154eddef90ae59 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 26 Oct 2021 13:14:50 -0400 Subject: [PATCH] Show how to run GitHub Actions CI workflows --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index abe49e3..dce65d0 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,15 @@ jobs: 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 +``` +