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 6534f10 commit f545110Copy full SHA for f545110
.github/workflows/build.yml
@@ -1,4 +1,7 @@
1
name: Build pull request
2
+concurrency:
3
+ group: ${{ github.ref }}
4
+ cancel-in-progress: true
5
6
on:
7
pull_request:
@@ -17,12 +20,12 @@ jobs:
17
20
node-version: [18.x]
18
21
19
22
steps:
- - uses: actions/checkout@v3
23
+ - uses: actions/checkout@v4
24
with:
25
token: ${{ secrets.GH_TOKEN }}
26
27
- name: Setting up ${{ matrix.node-version }}
- uses: actions/setup-node@v3
28
+ uses: actions/setup-node@v4
29
30
cache: 'npm'
31
node-version: ${{ matrix.node-version }}
.github/workflows/release.yml
@@ -1,6 +1,6 @@
name: Release
concurrency:
- group: ${{ github.ref }}
+ group: release
cancel-in-progress: true
permissions:
0 commit comments