Skip to content

Scan Songs

Scan Songs #7

Workflow file for this run

name: Scan Songs
on:
push:
branches:
- main
workflow_dispatch:
permissions: write-all
jobs:
fetch_api:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Run scan
run: python scan.py
- name: Commit and push
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git pull
git add encore.json
git commit -m "Update Songs"
git push