Skip to content

Commit af5fb03

Browse files
committed
remove references to v3 from release-branch.yml
1 parent 4e907cc commit af5fb03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release-branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
default: false
2929
type: boolean
3030
createPullRequest:
31-
description: 'Create pull request back into v3'
31+
description: 'Create pull request back into main'
3232
default: false
3333
type: boolean
3434
releaseBranch:
@@ -287,7 +287,7 @@ jobs:
287287
288288
merge-release:
289289
if: ${{ needs.vars.outputs.create_pull_request == 'true' }}
290-
name: Merge release branch back into V3 branch
290+
name: Merge release branch back into main branch
291291
runs-on: ubuntu-22.04
292292
needs: [vars,tag-release]
293293
permissions:
@@ -304,11 +304,11 @@ jobs:
304304
script: |
305305
const { repo, owner } = context.repo;
306306
const result = await github.rest.pulls.create({
307-
title: 'Merge ${{ github.ref_name }} back into v3',
307+
title: 'Merge ${{ github.ref_name }} back into main',
308308
owner,
309309
repo,
310310
head: '${{ github.ref_name }}',
311-
base: 'v3',
311+
base: 'main',
312312
body: [
313313
'This PR is auto-generated by the release workflow.'
314314
].join('\n')

0 commit comments

Comments
 (0)