Skip to content

Commit 42b337d

Browse files
authored
fix: 260 prerelease @W-20826542 (#594)
1 parent 271906b commit 42b337d

6 files changed

Lines changed: 45 additions & 9 deletions

File tree

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ on:
55
branches:
66
- main
77
- prerelease/**
8-
- 252-patch
9-
- 254-patch
10-
- 256-patch
118
- 258-patch
9+
- 260-patch
1210
tags-ignore:
1311
- '*'
1412
workflow_dispatch:

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
#ctc: true
4949
sign: true
5050
# 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 == '4' && 'latest') || 'next' }}
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '4' && 'latest') || (needs.getMajorVersion.outputs.major == '5' && 'prerelease') || 'next' }}
5252
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5353

5454
secrets: inherit

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: tests
22
on:
33
push:
4-
branches-ignore: [main, 252-patch, 254-patch, 256-patch, 258-patch]
4+
branches-ignore:
5+
- main
6+
- '2*-patch'
57
workflow_dispatch:
68

79
jobs:

.github/workflows/validate-pr.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name: pr-validation
33
on:
44
pull_request:
55
types: [opened, reopened, edited]
6-
# only applies to PRs that want to merge to main
7-
branches: [main, 252-patch, 254-patch, 256-patch, 258-patch]
6+
# only applies to PRs that want to merge to main or patch branches
7+
branches:
8+
- main
9+
- '2*-patch'
810

911
jobs:
1012
pr-validation:

CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,33 @@ R2b Release
2828

2929
- Create a [patch branch pull request](https://github.com/salesforcecli/plugin-lightning-dev/commit/150bcfa3036018ea49ab73da10d1b470cab0ad43).
3030
- Ensure this step completes successfully and has released a newly tagged "latest" version of the plugin to NPM.
31+
32+
### Branch / Release / API Version Reference
33+
34+
| Core Branch | Release Name | API Version | Plugin Version |
35+
| ----------- | ------------ | ----------- | -------------- |
36+
| 252-patch | winter25 | 62 | 1 |
37+
| 254-patch | spring25 | 63 | 2 |
38+
| 256-patch | summer25 | 64 | 3 |
39+
| 258-patch | winter26 | 65 | 4 |
40+
| 260-patch | spring26 | 66 | 5 |
41+
| 262-patch | summer26 | 67 | 6 |
42+
| 264-patch | winter27 | 68 | 7 |
43+
| 266-patch | spring27 | 69 | 8 |
44+
| 268-patch | summer27 | 70 | 9 |
45+
| 270-patch | winter28 | 71 | 10 |
46+
| 272-patch | spring28 | 72 | 11 |
47+
| 274-patch | summer28 | 73 | 12 |
48+
| 276-patch | winter29 | 74 | 13 |
49+
| 278-patch | spring29 | 75 | 14 |
50+
| 280-patch | summer29 | 76 | 15 |
51+
| 282-patch | winter30 | 77 | 16 |
52+
| 284-patch | spring30 | 78 | 17 |
53+
| 286-patch | summer30 | 79 | 18 |
54+
| 288-patch | winter31 | 80 | 19 |
55+
| 290-patch | spring31 | 81 | 20 |
56+
| 292-patch | summer31 | 82 | 21 |
57+
| 294-patch | winter32 | 83 | 22 |
58+
| 296-patch | spring32 | 84 | 23 |
59+
| 298-patch | summer32 | 85 | 24 |
60+
| 300-patch | winter33 | 86 | 25 |

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,14 +250,18 @@
250250
},
251251
{
252252
"versionNumber": "64.0",
253-
"tagName": "latest"
253+
"tagName": "v3"
254254
},
255255
{
256256
"versionNumber": "65.0",
257-
"tagName": "prerelease"
257+
"tagName": "latest"
258258
},
259259
{
260260
"versionNumber": "66.0",
261+
"tagName": "prerelease"
262+
},
263+
{
264+
"versionNumber": "67.0",
261265
"tagName": "next"
262266
}
263267
]

0 commit comments

Comments
 (0)