Update error messages in PDF/A and PDF/UA profiles. #101
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: Trigger increment action in webapp-server | |
on: | |
push: | |
branches: | |
[ integration ] | |
paths: | |
- 'PDF_UA/**' | |
- '!PDF_UA/1/**' | |
- '!PDF_UA/2/**' | |
jobs: | |
trigger_build: | |
if: github.repository == 'veraPDF/veraPDF-validation-profiles' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Set up JDK 1.11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- name: Create workflow dispatch | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.WORKFLOW_TOKEN }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'veraPDF', | |
repo: 'verapdf-webapp-server', | |
workflow_id: 'version-auto-increment.yml', | |
ref: 'master' | |
}) |