Merge pull request #7 from xsnowstorm/gigasaurus #11
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: Update JSON file | |
on: | |
push: | |
paths: | |
- 'gigachads/**' | |
pull_request: | |
paths: | |
- 'gigachads/**' | |
permissions: write-all | |
jobs: | |
update_json: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Update JSON file | |
run: | | |
bash update.sh | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9.1.1 | |
with: | |
message: "Updated gigalist" | |
author_name: "Auto Updater" |