File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 10
10
11
11
concurrency :
12
12
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
13
- cancel-in-progress : ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' && !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} # yamllint disable-line
13
+ cancel-in-progress : >-
14
+ ${{ github.ref != 'refs/heads/master' &&
15
+ github.event_name != 'merge_group' &&
16
+ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }}
14
17
15
18
jobs :
16
19
clang-format :
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ on: [pull_request]
4
4
5
5
concurrency :
6
6
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
7
- cancel-in-progress : ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' && !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} # yamllint disable-line
7
+ cancel-in-progress : >-
8
+ ${{ github.ref != 'refs/heads/master' &&
9
+ github.event_name != 'merge_group' &&
10
+ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }}
8
11
9
12
jobs :
10
13
clang-tidy :
You can’t perform that action at this time.
0 commit comments