You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This will only cause the `check-plan` job to have a "command" of `release`
27
28
# when the .release-plan.json file was changed on the last commit.
28
29
- id: check-release
@@ -48,21 +49,21 @@ jobs:
48
49
# github-changelog can discover what's changed since the last release
49
50
with:
50
51
fetch-depth: 0
51
-
ref: '2.x'
52
+
ref: 'main'
52
53
- uses: actions/setup-node@v4
53
54
with:
54
55
node-version: 18
55
-
56
+
56
57
- uses: pnpm/action-setup@v3
57
58
- run: pnpm install --frozen-lockfile
58
-
59
-
- name: 'Generate Explanation and Prep Changelogs'
59
+
60
+
- name: "Generate Explanation and Prep Changelogs"
60
61
id: explanation
61
62
run: |
62
63
set +e
63
-
64
+
64
65
pnpm release-plan prepare 2> >(tee -a stderr.log >&2)
65
-
66
+
66
67
67
68
if [ $? -ne 0 ]; then
68
69
echo 'text<<EOF' >> $GITHUB_OUTPUT
@@ -79,9 +80,9 @@ jobs:
79
80
- uses: peter-evans/create-pull-request@v6
80
81
with:
81
82
commit-message: "Prepare Release using 'release-plan'"
82
-
labels: 'internal'
83
-
branch: release-preview-2.x
84
-
title: Prepare Release (2.x)
83
+
labels: "internal"
84
+
branch: release-preview
85
+
title: Prepare Release
85
86
body: |
86
87
This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍
0 commit comments