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 committed by Cole Helbling
parent ae7e289a74
commit 127c635f94
1 changed files with 12 additions and 0 deletions

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