Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

Commit ad44a4a

Browse files
authored
Merge branch 'master' into 0-fix-improve-typo-in-error-message
2 parents 3c529f3 + 3415576 commit ad44a4a

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ name: CI
44

55
on: [ pull_request ]
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
# This pipeline validates proposed changes.
812
#
913
# CI pipeline based on:

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
push:
77
branches: [ master, alpha, beta ]
88

9+
# Only allow one release workflow to execute at a time, since each release
10+
# workflow uses shared resources (git tags, package registries)
11+
concurrency:
12+
group: ${{ github.workflow }}
13+
914
# semantic-release is built around the following idea:
1015
#
1116
# > A release consist in running test, defining the version then releasing

0 commit comments

Comments
 (0)