Skip to content

Commit b21f4a4

Browse files
committed
Update Workflows #nodeploy
1 parent b43c5f5 commit b21f4a4

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- "package*.json"
1212

1313
concurrency:
14-
group: dev
14+
group: ${{ github.workflow }}-${{ github.ref }}
1515
cancel-in-progress: true
1616

1717
jobs:

.github/workflows/lint.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ on:
77
push:
88
branches: [master]
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
lint:
1216
name: "Lint"
17+
if: ${{ !contains(github.event.head_commit.message, '#nolint') }}
1318
runs-on: ubuntu-latest
1419
timeout-minutes: 5
15-
if: ${{ !contains(github.event.head_commit.message, '#nolint') }}
1620

1721
steps:
1822
- name: "Checkout"

.github/workflows/pages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ env:
1515
purge-domain: ""
1616

1717
concurrency:
18-
group: pages
19-
cancel-in-progress: false
18+
group: ${{ github.workflow }}-${{ github.ref }}
19+
cancel-in-progress: true
2020

2121
jobs:
2222
build:

0 commit comments

Comments
 (0)