File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1010
1111concurrency :
1212 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') }}
1417
1518jobs :
1619 clang-format :
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ on: [pull_request]
44
55concurrency :
66 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') }}
811
912jobs :
1013 clang-tidy :
You can’t perform that action at this time.
0 commit comments