We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbab0b commit 68bcf8eCopy full SHA for 68bcf8e
.github/workflows/validate.yml
@@ -2,11 +2,19 @@ name: Public config validation
2
3
on:
4
push:
5
+ branches:
6
+ - main
7
pull_request:
8
+ types:
9
+ - opened
10
+ - reopened
11
+ - synchronize
12
+ schedule:
13
+ - cron: 0 0 * * 1-5
14
15
concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
16
+ group: "${{ github.workflow }}-${{ github.ref }}"
17
+ cancel-in-progress: "${{ !contains(github.ref, 'main')}}"
18
19
jobs:
20
validate:
0 commit comments