From 303111c1501adf7607eb6390db554d43ba6e0313 Mon Sep 17 00:00:00 2001
From: Graham Christensen <graham@grahamc.com>
Date: Wed, 27 Oct 2021 12:29:51 -0400
Subject: [PATCH] Include the text about the update action in the PR body

---
 action.yml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/action.yml b/action.yml
index 6a1ef74..e5b8d9e 100644
--- a/action.yml
+++ b/action.yml
@@ -30,3 +30,15 @@ runs:
           ```
           ${{ steps.commit_message.outputs.msg }}
           ```
+
+          ### Running GitHub Actions on this PR
+
+          GitHub Actions will not run workflows when a branch is pushed by or a PR is opened by a GitHub Action. To work around this, try:
+
+          ```sh
+          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
+          ```