Generate Modules Meta JSON #5350
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: Generate Modules Meta JSON | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 * * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- name: Setup Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install PyGithub | |
- name: Generate JSON | |
run: | | |
export GIT_TOKEN="${{ secrets.AUTH_KEY }}" | |
python generate-modules.py "${{ secrets.TOKEN }}" > modules.json | |
- name: Commit Changes | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Googlers Repo Service" | |
git add modules.json | |
git commit -sm "Update modules.json" || true | |
git push || true |