Skip to content

resolved #206

resolved #206 #207

Workflow file for this run

name: Automkconfig
on:
push:
branches:
- master
paths:
- 'rules/apps/**.json'
- 'rules/hubs/**.json'
jobs:
mkconfig:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11-dev
- name: Automkconfig
env:
GITHUB_COMMIT: ${{ github.event.head_commit.message }}
run: |
PYTHONPATH=./scripts/make/ python ./scripts/make/mkconfig.py
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add rules/rules.json
git commit -m "$GITHUB_COMMIT"
git push