Skip to content

try to fix ci 4

try to fix ci 4 #6

Workflow file for this run

name: Update FAQ HTML
on:
push:
paths:
- 'data/faq.json'
permissions:
contents: write
jobs:
update-faq:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Generate FAQ HTML
run: |
python .github/scripts/generate_faq_html.py
- name: Commit updated FAQ HTML
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add faq.html
git commit -m "Update FAQ HTML [skip ci]"
git push