Skip to content

Commit 5e441b5

Browse files
committed
update release-plan
1 parent 268cfd7 commit 5e441b5

File tree

5 files changed

+469
-353
lines changed

5 files changed

+469
-353
lines changed

.github/workflows/plan-release.yml

Lines changed: 41 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,91 @@
1-
name: Release Plan Review
1+
name: Plan Release
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- main
67
- master
7-
pull_request:
8+
pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
89
types:
910
- labeled
11+
- unlabeled
1012

1113
concurrency:
1214
group: plan-release # only the latest one of these should ever be running
1315
cancel-in-progress: true
1416

1517
jobs:
16-
check-plan:
17-
name: 'Check Release Plan'
18+
is-this-a-release:
19+
name: "Is this a release?"
1820
runs-on: ubuntu-latest
1921
outputs:
2022
command: ${{ steps.check-release.outputs.command }}
2123

2224
steps:
2325
- uses: actions/checkout@v4
2426
with:
25-
fetch-depth: 0
27+
fetch-depth: 2
2628
ref: 'main'
27-
# This will only cause the `check-plan` job to have a "command" of `release`
29+
# This will only cause the `is-this-a-release` job to have a "command" of `release`
2830
# when the .release-plan.json file was changed on the last commit.
2931
- id: check-release
3032
run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT
3133

32-
prepare_release_notes:
33-
name: Prepare Release Notes
34+
create-prepare-release-pr:
35+
name: Create Prepare Release PR
3436
runs-on: ubuntu-latest
3537
timeout-minutes: 5
36-
needs: check-plan
37-
outputs:
38-
explanation: ${{ steps.explanation.outputs.text }}
39-
# only run on push event if plan wasn't updated (don't create a release plan when we're releasing)
38+
needs: is-this-a-release
39+
permissions:
40+
contents: write
41+
issues: read
42+
pull-requests: write
43+
# only run on push event or workflow dispatch if plan wasn't updated (don't create a release plan when we're releasing)
4044
# only run on labeled event if the PR has already been merged
41-
if: (github.event_name == 'push' && needs.check-plan.outputs.command != 'release') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
45+
if: ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.is-this-a-release.outputs.command != 'release') || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
4246

4347
steps:
4448
- uses: actions/checkout@v4
4549
# We need to download lots of history so that
46-
# lerna-changelog can discover what's changed since the last release
50+
# github-changelog can discover what's changed since the last release
4751
with:
4852
fetch-depth: 0
53+
ref: 'main'
54+
- uses: pnpm/action-setup@v4
4955
- uses: actions/setup-node@v4
5056
with:
5157
node-version: 18
52-
53-
- uses: pnpm/action-setup@v2
54-
with:
55-
version: 8
58+
cache: pnpm
5659
- run: pnpm install --frozen-lockfile
57-
58-
- name: 'Generate Explanation and Prep Changelogs'
60+
- name: "Generate Explanation and Prep Changelogs"
5961
id: explanation
6062
run: |
61-
set -x
63+
set +e
64+
pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2)
6265
63-
pnpm release-plan prepare
66+
if [ $? -ne 0 ]; then
67+
release_plan_output=$(cat release-plan-stderr.txt)
68+
else
69+
release_plan_output=$(jq .description .release-plan.json -r)
70+
rm release-plan-stderr.txt
6471
65-
echo 'text<<EOF' >> $GITHUB_OUTPUT
66-
jq .description .release-plan.json -r >> $GITHUB_OUTPUT
67-
echo 'EOF' >> $GITHUB_OUTPUT
72+
if [ $(jq '.solution | length' .release-plan.json) -eq 1 ]; then
73+
new_version=$(jq -r '.solution[].newVersion' .release-plan.json)
74+
echo "new_version=v$new_version" >> $GITHUB_OUTPUT
75+
fi
76+
fi
77+
echo 'text<<EOF' >> $GITHUB_OUTPUT
78+
echo "$release_plan_output" >> $GITHUB_OUTPUT
79+
echo 'EOF' >> $GITHUB_OUTPUT
6880
env:
6981
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
7082

71-
- uses: peter-evans/create-pull-request@v5
83+
- uses: peter-evans/create-pull-request@v7
7284
with:
73-
commit-message: "Prepare Release using 'release-plan'"
74-
author: 'github-actions[bot] <[email protected]>'
75-
labels: 'internal'
85+
commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
86+
labels: "internal"
7687
branch: release-preview
77-
title: Prepare Release
88+
title: Prepare Release ${{ steps.explanation.outputs.new_version }}
7889
body: |
7990
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 👍
8091

.github/workflows/publish.yml

Lines changed: 14 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# For every push to the master branch, this checks if the release-plan was
2-
# updated and if it was it will publish stable npm packages based on the
3-
# release plan
1+
# For every push to the primary branch with .release-plan.json modified,
2+
# runs release-plan.
43

54
name: Publish Stable
65

@@ -10,50 +9,35 @@ on:
109
branches:
1110
- main
1211
- master
12+
paths:
13+
- '.release-plan.json'
1314

1415
concurrency:
1516
group: publish-${{ github.head_ref || github.ref }}
1617
cancel-in-progress: true
1718

1819
jobs:
19-
check-plan:
20-
name: 'Check Release Plan'
21-
runs-on: ubuntu-latest
22-
outputs:
23-
command: ${{ steps.check-release.outputs.command }}
24-
25-
steps:
26-
- uses: actions/checkout@v4
27-
with:
28-
fetch-depth: 0
29-
ref: 'main'
30-
# This will only cause the `check-plan` job to have a result of `success`
31-
# when the .release-plan.json file was changed on the last commit. This
32-
# plus the fact that this action only runs on main will be enough of a guard
33-
- id: check-release
34-
run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT
35-
3620
publish:
37-
name: 'NPM Publish'
21+
name: "NPM Publish"
3822
runs-on: ubuntu-latest
39-
needs: check-plan
40-
if: needs.check-plan.outputs.command == 'release'
23+
permissions:
24+
contents: write
25+
pull-requests: write
26+
id-token: write
27+
attestations: write
4128

4229
steps:
4330
- uses: actions/checkout@v4
31+
- uses: pnpm/action-setup@v4
4432
- uses: actions/setup-node@v4
4533
with:
4634
node-version: 18
4735
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
4836
registry-url: 'https://registry.npmjs.org'
49-
50-
- uses: pnpm/action-setup@v2
51-
with:
52-
version: 8
37+
cache: pnpm
5338
- run: pnpm install --frozen-lockfile
54-
- name: npm publish
55-
run: pnpm release-plan publish
56-
39+
- name: Publish to NPM
40+
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
5741
env:
5842
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
5943
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Process
22

3-
Releases in this repo are mostly automated using [release-plan](https://github.com/embroider-build/release-plan/). Once you label all your PRs correctly (see below) you will have an automatically generated PR that updates your CHANGELOG.md file and a `.release-plan.json` that is used prepare the release once the PR is merged.
3+
Releases in this repo are mostly automated using [release-plan](https://github.com/embroider-build/release-plan/). Once you label all your PRs correctly (see below) you will have an automatically generated PR that updates your CHANGELOG.md file and a `.release-plan.json` that is used to prepare the release once the PR is merged.
44

55
## Preparation
66

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@
7979
"glob": "^8.1.0",
8080
"jest": "^29.5.0",
8181
"prettier": "^2.8.8",
82-
"release-plan": "^0.5.0",
82+
"release-plan": "^0.17.2",
8383
"ts-jest": "^29.1.0",
8484
"typescript": "^5.0.4"
8585
},
86+
"packageManager": "[email protected]+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef",
8687
"engines": {
8788
"node": "20.* || 22.* || >= 24.*"
8889
},
8990
"publishConfig": {
9091
"registry": "https://registry.npmjs.org"
91-
},
92-
"packageManager": "[email protected]+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef"
92+
}
9393
}

0 commit comments

Comments
 (0)