Include the text about the update action in the PR body

This commit is contained in:
Graham Christensen 2021-10-27 12:29:51 -04:00
parent 38262be43f
commit 303111c150

View file

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