Skip to content

Commit b48ad4b

Browse files
committed
Update workflows from templates.
1 parent e222f63 commit b48ad4b

File tree

6 files changed

+17
-1
lines changed

6 files changed

+17
-1
lines changed

.github/bump-version.bump.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ if [ -z "${RELEASEVERS}" ] ; then
6161
;;
6262
esac
6363
fi
64-
echo "release=${RELEASEVERS}" >> "$GITHUB_OUTPUT"
64+
# The prefix is there to support Go's release naming conventions.
65+
echo "release=${BUMP_VERSION_RELEASE_PREFIX}${RELEASEVERS}" >> "$GITHUB_OUTPUT"
6566

6667
# Derive a new bumped version from the release version.
6768
# Increment the last number in the string.

.github/workflows/bump-version.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ name: Bump Version
1111
inputs:
1212
version:
1313
description: New semver release version.
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
1417
env:
1518
MODE: prerelease
1619
jobs:

.github/workflows/rust-ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# For docs, see github-actions in the IronCoreLabs/depot repo.
44

55
name: Rust CI
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
69
'on':
710
push:
811
branches:

.github/workflows/rust-daily.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# For docs, see github-actions in the IronCoreLabs/depot repo.
44

55
name: Rust Daily
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
69
'on':
710
schedule:
811
- cron: 0 14 * * 2-5

.github/workflows/typescript-ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# For docs, see github-actions in the IronCoreLabs/depot repo.
44

55
name: TypeScript CI
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
69
'on':
710
push:
811
branches:

.github/workflows/update-workflows.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# For docs, see github-actions in the IronCoreLabs/depot repo.
44

55
name: Update Workflows
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
69
'on':
710
push:
811
paths:

0 commit comments

Comments
 (0)