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 b02283a commit b998dd4Copy full SHA for b998dd4
.github/workflows/release.yml
@@ -6,13 +6,21 @@ on:
6
7
jobs:
8
test:
9
+ # ignore all-contributors PRs
10
+ if: ${{ !contains(github.head_ref, 'all-contributors') }}
11
+
12
runs-on: ubuntu-latest
13
14
strategy:
15
matrix:
16
node: [10.x, 12.x]
17
18
steps:
19
+ - name: Cancel previous runs
20
+ uses: styfle/cancel-workflow-action@0.6.0
21
+ with:
22
+ access_token: ${{ secrets.GITHUB_TOKEN }}
23
24
- uses: actions/checkout@v2
25
26
- name: Setup nodejs
@@ -28,6 +36,11 @@ jobs:
28
36
29
37
30
38
39
40
41
42
43
31
44
32
45
33
46
0 commit comments