Skip to content

Merge branch 'main' of https://github.com/FNLookup/encore #2

Merge branch 'main' of https://github.com/FNLookup/encore

Merge branch 'main' of https://github.com/FNLookup/encore #2

Workflow file for this run

name: Scan Songs
on:
push:
branches: ["main"]
permissions: write-all
jobs:
fetch_api:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- 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