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
Copy file name to clipboardExpand all lines: .github/workflows/plan-stable-release.yml
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,9 @@
1
-
name: Plan Release
1
+
name: Plan Stable Release
2
2
on:
3
3
workflow_dispatch:
4
4
push:
5
5
branches:
6
-
- main
7
-
- master
6
+
- release
8
7
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/
9
8
types:
10
9
- labeled
@@ -25,7 +24,7 @@ jobs:
25
24
- uses: actions/checkout@v4
26
25
with:
27
26
fetch-depth: 2
28
-
ref: 'main'
27
+
ref: 'release'
29
28
# This will only cause the `is-this-a-release` job to have a "command" of `release`
30
29
# when the .release-plan.json file was changed on the last commit.
31
30
- id: check-release
@@ -50,7 +49,7 @@ jobs:
50
49
# github-changelog can discover what's changed since the last release
51
50
with:
52
51
fetch-depth: 0
53
-
ref: 'main'
52
+
ref: 'release'
54
53
- uses: pnpm/action-setup@v4
55
54
- uses: actions/setup-node@v4
56
55
with:
@@ -85,7 +84,7 @@ jobs:
85
84
commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
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