Skip to content

Merge branch 'main' of github.com:eri24816/grapycal_examples #7

Merge branch 'main' of github.com:eri24816/grapycal_examples

Merge branch 'main' of github.com:eri24816/grapycal_examples #7

Workflow file for this run

# runs scripts/gen_metadata.py then commits the changes to the repo
name: Generate Metadata
on:
push:
branches:
- main
jobs:
gen_metadata:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Run script
run: python scripts/gen_metadata.py
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "eri24816"
git add metadata.json
git commit -m "Update metadata.json"
git push