Tweak names and output. #1
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: Update Rules Page | |
on: | |
push: | |
branches: | |
- main | |
- brett0000FF/generate-rules-page ##remove | |
paths: | |
- 'styles/**' | |
- '.github/workflows/update-rules.yml' | |
jobs: | |
generate_markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyyaml | |
- name: Run script to generate Markdown | |
run: python scripts/update-rules-page.py | |
- name: Commit and push changes | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add rules_overview.md | |
git commit -m "Update rules page." || echo "No changes to commit." | |
git push |