Skip to content

Commit e8c1d1b

Browse files
committed
Flip direction of the 6.3 merge workflow
1 parent 8c8804e commit e8c1d1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/automerge.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: Create PR to merge release into main branch
1+
name: Create PR to merge main into release branch
22
# In the first period after branching the release branch,
33
# we typically want to include many changes from `main` in the release branch.
4-
# This workflow automatically creates a PR to merge the release branch into the main.
4+
# This workflow automatically creates a PR to merge the main branch into the release branch.
55
# Later in the release cycle we should stop this practice to avoid landing risky changes by disabling this workflow.
66
# To do so, disable the workflow as described in https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/disabling-and-enabling-a-workflow
77
permissions:
@@ -12,11 +12,11 @@ on:
1212
workflow_dispatch:
1313
jobs:
1414
create_merge_pr:
15-
name: Create PR to merge release into main branch
15+
name: Create PR to merge main into release branch
1616
uses: swiftlang/github-workflows/.github/workflows/create_automerge_pr.yml@main
1717
with:
18-
head_branch: release/6.3
19-
base_branch: main
18+
head_branch: main
19+
base_branch: release/6.3
2020
permissions:
2121
contents: write
2222
pull-requests: write

0 commit comments

Comments
 (0)