File tree 2 files changed +6
-29
lines changed
2 files changed +6
-29
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,8 @@ jobs:
192
192
pull-requests : write
193
193
if : needs.state.outputs.merge == 'true'
194
194
runs-on : ubuntu-latest
195
+ env :
196
+ MERGE_BRANCH : merge/${{ github.ref_name }}
195
197
steps :
196
198
- uses : actions/checkout@v3
197
199
with :
@@ -200,15 +202,17 @@ jobs:
200
202
uses : ./.github/actions/setup
201
203
- run : bash scripts/git-user-config.sh
202
204
- name : Create branch to merge
203
- run : bash scripts/release/workflow/prepare-release-merge.sh
205
+ run : |
206
+ git checkout -B "$MERGE_BRANCH" "$GITHUB_REF_NAME"
207
+ git push -f origin "$MERGE_BRANCH"
204
208
- name : Create PR back to master
205
209
uses : actions/github-script@v6
206
210
with :
207
211
script : |
208
212
await github.rest.pulls.create({
209
213
owner: context.repo.owner,
210
214
repo: context.repo.repo,
211
- head: 'merge/${{ github.ref_name }}' ,
215
+ head: process.env.MERGE_BRANCH ,
212
216
base: 'master',
213
217
title: '${{ format('Merge {0} branch', github.ref_name) }}'
214
218
});
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments