diff options
author | Jertzukka <Jertzukka@gmail.com> | 2025-02-15 12:40:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-15 11:40:27 +0100 |
commit | 98fa395f29c065506bf18043ddb050d37ae06f66 (patch) | |
tree | 54f3a28ce67757739dc46bbf4b9f1d0a17f0e3d7 | |
parent | 974a3909ecaf0de63f7ef36b2ed6d1e0a7804267 (diff) | |
download | VeraCrypt-98fa395f29c065506bf18043ddb050d37ae06f66.tar.gz VeraCrypt-98fa395f29c065506bf18043ddb050d37ae06f66.zip |
CI: Enable XML Validation Workflow (#1497)
-rwxr-xr-x[-rw-r--r--] | .github/workflows/xmlvalidate.sh | 0 | ||||
-rw-r--r-- | .github/workflows/xmlvalidate.yml | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/xmlvalidate.sh b/.github/workflows/xmlvalidate.sh index 79d52c16..79d52c16 100644..100755 --- a/.github/workflows/xmlvalidate.sh +++ b/.github/workflows/xmlvalidate.sh diff --git a/.github/workflows/xmlvalidate.yml b/.github/workflows/xmlvalidate.yml index 66389252..951a934e 100644 --- a/.github/workflows/xmlvalidate.yml +++ b/.github/workflows/xmlvalidate.yml @@ -1,31 +1,31 @@ name: Validate XML on: push: - branches: [ "ci" ] + branches: [ "master" ] paths: - 'Translations/*' - 'src/Common/Language.xml' - '.github/workflows/xmlvalidate.*' pull_request: - branches: [ "ci" ] + branches: [ "master" ] paths: - 'Translations/*' - 'src/Common/Language.xml' - '.github/workflows/xmlvalidate.*' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: validate: runs-on: ubuntu-latest timeout-minutes: 10 steps: - uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: |