Fix for issue #2828: require a minumum of one value for stage/@type. #707
This file contains hidden or 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 and update JSON Spec lists for translation" | |
| on: | |
| push: | |
| paths: | |
| - 'P5/Source/Specs/*.xml' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout TEI Repository | |
| uses: actions/checkout@v4 | |
| - name: Generate JSON Spec list | |
| uses: ./.github/actions/generate-spec-lists | |
| - name: Auto-commit Spec list | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_user_name: ${{ github.actor }} | |
| commit_message: Re-generated spec lists. | |