We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ce9ad commit e3b6ceaCopy full SHA for e3b6cea
.github/workflows/test.yml
@@ -5,7 +5,20 @@ on:
5
- pull_request
6
7
jobs:
8
+ pre_job:
9
+ runs-on: [self-hosted, x64]
10
+ outputs:
11
+ should_skip: ${{ steps.skip_check.outputs.should_skip }}
12
+ steps:
13
+ - id: skip_check
14
+ uses: fkirc/skip-duplicate-actions@master
15
+ with:
16
+ do_not_skip: '["pull_request"]'
17
+ cancel_others: 'true'
18
+ concurrent_skipping: same_content
19
test:
20
+ needs: pre_job
21
+ if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
22
runs-on: ubuntu-latest
23
strategy:
24
matrix:
0 commit comments