We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89776f7 commit bfa7cddCopy full SHA for bfa7cdd
.github/workflows/SyntaxKit.yml
@@ -1,8 +1,10 @@
1
name: SyntaxKit
2
on:
3
push:
4
- branches-ignore:
5
- - '*WIP'
+ branches:
+ - main
6
+ tags:
7
+ - 'v[0-9]*.[0-9]*.[0-9]*'
8
paths-ignore:
9
- '**.md'
10
- 'Docs/**'
@@ -326,17 +328,3 @@ jobs:
326
328
- uses: actions/checkout@v6
327
329
- name: Validate Documentation
330
run: ./Scripts/validate-docs.sh
-
- all-done:
331
- name: All Done
332
- if: always()
333
- needs: [lint, docs]
334
- runs-on: ubuntu-latest
335
- steps:
336
- - name: Check for failures
337
- run: |
338
- if [[ "${{ contains(needs.*.result, 'failure') }}" == "true" ]]; then
339
- echo "One or more required jobs failed."
340
- exit 1
341
- fi
342
- echo "All required checks passed, were skipped, or were cancelled."
0 commit comments