A GitHub action to add a comment on pull requests.
name: Add checkout commands
on: pull_request
jobs:
comment:
name: Add checkout commands
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: harupy/comment-on-pr@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: template.md
commands to checkout to this branch
```
git fetch upstream pull/{pull_id}/head:{branch_name}
git checkout {branch_name}
```
The template above creates: