Skip to content

Commit

Permalink
Include the text about the update action in the PR body
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc authored and cole-h committed Oct 27, 2021
1 parent ae7e289 commit 127c635
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 127c635

Please sign in to comment.