Skip to content

Commit e45c668

Browse files

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/release.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- "Skip Changelog"
5+
- "Release"
6+
authors:
7+
- dependabot[bot]

bin/release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ async function createRelease(version) {
142142

143143
// Create PR using GitHub CLI and capture the URL
144144
console.log('\nCreating PR...');
145-
const prUrl = execWithOutput(`gh pr create --title "Release ${version}" --body "Release version ${version}" --base trunk --head ${branchName} --reviewer "Automattic/fediverse" --assignee "${currentUser}"`);
145+
const prUrl = execWithOutput(`gh pr create --title "Release ${version}" --body "Release version ${version}" --base trunk --head ${branchName} --reviewer "Automattic/fediverse" --assignee "${currentUser}" --label "Release"`);
146146

147147
// Open PR in browser if a URL was returned
148148
if (prUrl && prUrl.includes('github.com')) {

0 commit comments

Comments
 (0)