File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1111
1212
1313jobs :
14+ pre_run :
15+ runs-on : ubuntu-latest
16+ outputs :
17+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
18+ steps :
19+ - id : skip_check
20+ uses : fkirc/skip-duplicate-actions@v5
21+ with :
22+ concurrent_skipping : same_content_newer
23+ skip_after_successful_duplicate : ' true'
24+
1425 build :
26+ needs : pre_run
27+ if : needs.pre_run.outputs.should_skip != 'true'
28+
1529 strategy :
1630 fail-fast : false
1731 matrix :
Original file line number Diff line number Diff line change 99 -Dtests=OFF -Dsymbols=ON
1010
1111jobs :
12+ pre_run :
13+ runs-on : ubuntu-latest
14+ outputs :
15+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
16+ steps :
17+ - id : skip_check
18+ uses : fkirc/skip-duplicate-actions@v5
19+ with :
20+ concurrent_skipping : same_content_newer
21+ skip_after_successful_duplicate : ' true'
22+
1223 CodeQL-Build :
24+ needs : pre_run
25+ if : needs.pre_run.outputs.should_skip != 'true'
26+
1327 runs-on : ubuntu-20.04
1428
1529 steps :
You can’t perform that action at this time.
0 commit comments