File tree Expand file tree Collapse file tree 6 files changed +15
-11
lines changed
Expand file tree Collapse file tree 6 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: fuzz
22on :
33 pull_request :
44 branches :
5- - main
5+ - ' main'
6+ - ' release/**'
67 paths-ignore :
78 - ' CHANGELOG.md'
89 - ' README.md'
Original file line number Diff line number Diff line change 88 - ' MAINTAINERS'
99 push :
1010 branches :
11- - main
11+ - ' main'
12+ - ' release/**'
1213
1314permissions :
1415 contents : read # for actions/checkout to fetch code
2829 **/go.sum
2930 **/go.mod
3031 - name : Enable integration tests
31- # Only run integration tests for main branch
32- if : github.ref == 'refs/heads/main'
32+ # Only run integration tests for main and release branches
33+ if : github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')
3334 run : |
3435 echo 'GO_TAGS=integration' >> $GITHUB_ENV
3536 - name : Setup Kubernetes
6364 **/go.sum
6465 **/go.mod
6566 - name : Enable integration tests
66- # Only run integration tests for main branch
67- if : github.ref == 'refs/heads/main'
67+ # Only run integration tests for main and release branches
68+ if : github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')
6869 run : |
6970 echo 'GO_TAGS=integration' >> $GITHUB_ENV
7071 - name : Prepare
Original file line number Diff line number Diff line change 77 inputs :
88 tag :
99 description : ' image tag prefix'
10- default : ' rc '
10+ default : ' preview '
1111 required : true
1212
1313permissions :
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: scan
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [ ' main', 'release/**' ]
66 pull_request :
7- branches : [ main ]
7+ branches : [ ' main', 'release/**' ]
88 schedule :
99 - cron : ' 18 10 * * 3'
1010
Original file line number Diff line number Diff line change 99
1010 push :
1111 branches :
12- - main
12+ - ' main'
13+ - ' release/**'
1314
1415permissions :
1516 contents : read # for actions/checkout to fetch code
Original file line number Diff line number Diff line change 99
1010 push :
1111 branches :
12- - main
12+ - ' main'
13+ - ' release/**'
1314
1415permissions :
1516 contents : read # for actions/checkout to fetch code
You can’t perform that action at this time.
0 commit comments