Skip to content

Update new website announcement #24

Update new website announcement

Update new website announcement #24

Workflow file for this run

name: Update FAQ HTML
on:
push:
paths:
- 'data/faq.yaml'
- '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 -m pip install pyyaml
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