Synchronize ASC API #759
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: Synchronize ASC API | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
schedule: | |
# run once per day | |
- cron: '0 12 * * *' | |
jobs: | |
diff_spec: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make download | |
# If there are any differences, this step will fail | |
# and issue a notification. The api will then need to be | |
# updated and tagged manually. | |
- run: git diff --ignore-all-space --exit-code | |