Add Yi Ren Zhixia S4 to S5 (#402) #434
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: Generate lists | |
on: | |
push: | |
branches: master | |
workflow_dispatch: | |
jobs: | |
generate-lists: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Generate lists | |
run: | | |
sudo apt-get update | |
sudo apt-get install xsltproc libxml2-utils | |
for f in *.xml; do xmllint --format --output "$f" "$f"; done | |
./generate-lists.sh | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Generate lists |