Skip to content

Refresh SSA Data

Refresh SSA Data #111

name: Refresh SSA Data
on:
workflow_dispatch:
schedule:
- cron: '5 6 * 2-6 0,4'
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- run: pip3 install -r requirements.txt
- run: python refresh_ssa_data.py
- name: Commit and push if changed
run: |-
git config user.name "Actions"
git config user.email "[email protected]"
git add -A
git commit -m "Refresh SSA data" || exit 0
git push