Save agency slices #57
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: Save agency slices | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: "15 14 * * *" | |
workflow_dispatch: | |
jobs: | |
bundle: | |
name: Save Agency Slices | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: pip install -r ./slicer/requirements.txt | |
- run: python ./slicer/main.py | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Save agency slices |