From 31d2afe6baa0a71d9f22078fa1be29ea9a647f1a Mon Sep 17 00:00:00 2001
From: Graham Christensen <graham@grahamc.com>
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
+```
+