Skip to content

Trigger FAQ generator #14

Trigger FAQ generator

Trigger FAQ generator #14

Workflow file for this run

name: Update FAQ HTML
on:
push:
paths:
- 'data/faq.json'
- 'data/faq-template.html'
- '.github/scripts/generate_faq_html.py'
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