Skip to content

Commit

Permalink
feat!: new minor release for spring25(254-patch) branch @W-17311538@ (#…
Browse files Browse the repository at this point in the history
…274)

* feat: new minor release for spring25(254/patch) branch @W-17311538@

* fix: update API version and tag to match branching
  • Loading branch information
ravijayaramappa authored and nrkruk committed Dec 19, 2024
1 parent d1b5095 commit 8a83e2d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
- prerelease/**
- 252-patch
- 254-patch
tags-ignore:
- '*'
workflow_dispatch:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/onRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
with:
#ctc: true
sign: true
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '1') && 'latest' || 'next' }}
# 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'
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '1' && 'latest') || (needs.getMajorVersion.outputs.major == '2' && 'prerelease') ||'next' }}
githubTag: ${{ github.event.release.tag_name || inputs.tag }}

secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: tests
on:
push:
branches-ignore: [main, 252-patch]
branches-ignore: [main, 252-patch, 254-patch]
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
types: [opened, reopened, edited]
# only applies to PRs that want to merge to main
branches: [main, 252-patch]
branches: [main, 252-patch, 254-patch]

jobs:
pr-validation:
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
"apiVersionMetadata": {
"comment": "Refer to ApiVersionMetadata in orgUtils.ts for details",
"target": {
"versionNumber": "63.0",
"versionNumber": "64.0",
"matchingDevServerVersion": "^11.1.0"
},
"versionToTagMappings": [
Expand All @@ -228,6 +228,10 @@
},
{
"versionNumber": "63.0",
"tagName": "prerelease"
},
{
"versionNumber": "64.0",
"tagName": "next"
}
]
Expand Down

0 comments on commit 8a83e2d

Please sign in to comment.