Adjust handle spacing #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π§ͺ | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./ | |
with: | |
issue: 1 | |
approvers: | | |
joshmgross | |
guestbook-path: guestbook.md | |
- name: Update guestbook | |
run: | | |
if [[ `git status --porcelain` ]]; then | |
git config --local user.email "[email protected]" | |
git config --local user.name "${{ github.actor }}" | |
git add guestbook.md | |
git commit -m "β Update guestbook" | |
git push | |
fi |