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
+          ```