Trigger workflows. #99
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: "Update Arabic columns from the authority file" | |
on: | |
push: | |
paths: | |
# this specifies the path of the file(s) that have to have been pushed | |
# for triggering this action | |
- authority-files/jaraid_authority-file.TEIP5.xml | |
- tei/jaraid_master.TEIP5.xml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v2 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/update-arabic-columns | |
# this step automatically commits changes | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Github actions: updated Arabic columns from the authority file" |