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-release.yml
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,14 @@ name: Release Plan Review
2
2
on:
3
3
push:
4
4
branches:
5
-
- main
6
-
- master
5
+
- v4.x
7
6
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/
8
7
types:
9
8
- labeled
10
9
- unlabeled
11
10
12
11
concurrency:
13
-
group: plan-release # only the latest one of these should ever be running
12
+
group: plan-release-v4# only the latest one of these should ever be running
14
13
cancel-in-progress: true
15
14
16
15
jobs:
@@ -24,7 +23,7 @@ jobs:
24
23
- uses: actions/checkout@v4
25
24
with:
26
25
fetch-depth: 0
27
-
ref: 'master'
26
+
ref: 'v4.x'
28
27
# This will only cause the `check-plan` job to have a "command" of `release`
29
28
# when the .release-plan.json file was changed on the last commit.
30
29
- id: check-release
@@ -79,7 +78,7 @@ jobs:
79
78
with:
80
79
commit-message: "Prepare Release using 'release-plan'"
81
80
labels: "internal"
82
-
branch: release-preview
81
+
branch: release-preview-v4
83
82
title: Prepare Release
84
83
body: |
85
84
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