File tree Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 11name : CI
22
33on :
4- pull_request :
54 push :
6- branches : [master]
5+ branches :
6+ - ' **'
7+ - ' !release-**'
78
89concurrency :
910 group : ${{ github.workflow }}-${{ github.head_ref }}
Original file line number Diff line number Diff line change 11name : reviewdog
22on :
3- pull_request :
3+ push :
4+ branches :
5+ - ' **'
6+ - ' !release-**'
47
58concurrency :
69 group : ${{ github.workflow }}-${{ github.head_ref }}
Original file line number Diff line number Diff line change 1+ # This workflow skips all heavy stuff for release branches
2+ name : Skip Tests
3+
4+ on :
5+ push :
6+ branches :
7+ - ' release-**'
8+ tags-ignore :
9+ - ' **'
10+
11+ concurrency :
12+ group : ${{ github.ref }}-${{ github.workflow }}
13+ cancel-in-progress : true
14+
15+ jobs :
16+ reviewdog :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - run : ' echo "Not required"'
20+
21+ basic :
22+ name : Run tests
23+ runs-on : ubuntu-latest
24+ steps :
25+ - run : ' echo "Not required"'
You can’t perform that action at this time.
0 commit comments