Skip to content

Commit

Permalink
Remove automatic conflict resolution for merge from release branch (#…
Browse files Browse the repository at this point in the history
…4362)

(cherry picked from commit 002a7c8)
  • Loading branch information
frangio committed Jun 16, 2023
1 parent ded8c9e commit f03420b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 29 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release-cycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ jobs:
pull-requests: write
if: needs.state.outputs.merge == 'true'
runs-on: ubuntu-latest
env:
MERGE_BRANCH: merge/${{ github.ref_name }}
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -200,15 +202,17 @@ jobs:
uses: ./.github/actions/setup
- run: bash scripts/git-user-config.sh
- name: Create branch to merge
run: bash scripts/release/workflow/prepare-release-merge.sh
run: |
git checkout -B "$MERGE_BRANCH" "$GITHUB_REF_NAME"
git push -f origin "$MERGE_BRANCH"
- name: Create PR back to master
uses: actions/github-script@v6
with:
script: |
await github.rest.pulls.create({
owner: context.repo.owner,
repo: context.repo.repo,
head: 'merge/${{ github.ref_name }}',
head: process.env.MERGE_BRANCH,
base: 'master',
title: '${{ format('Merge {0} branch', github.ref_name) }}'
});
27 changes: 0 additions & 27 deletions scripts/release/workflow/prepare-release-merge.sh

This file was deleted.

0 comments on commit f03420b

Please sign in to comment.