Skip to content

Commit 0b20cc4

Browse files
feat: new minor release for spring25(254/patch) branch @W-17311538@
1 parent 11bd86d commit 0b20cc4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/create-github-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- main
77
- prerelease/**
88
- 252-patch
9+
- 254-patch
910
tags-ignore:
1011
- '*'
1112
workflow_dispatch:

.github/workflows/onRelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
with:
4848
#ctc: true
4949
sign: true
50-
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '1') && 'latest' || 'next' }}
50+
# At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest'
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '1' && 'latest') || (needs.getMajorVersion.outputs.major == '2' && 'prerelease') ||'next' }}
5152
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5253
nodeVersion: 20.18.0
5354

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: tests
22
on:
33
push:
4-
branches-ignore: [main, 252-patch]
4+
branches-ignore: [main, 252-patch, 254-patch]
55
workflow_dispatch:
66

77
jobs:

.github/workflows/validate-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
types: [opened, reopened, edited]
66
# only applies to PRs that want to merge to main
7-
branches: [main, 252-patch]
7+
branches: [main, 252-patch, 254-patch]
88

99
jobs:
1010
pr-validation:

0 commit comments

Comments
 (0)