From af9b7385809d2e5aebdafa5b63cde0d2713711a3 Mon Sep 17 00:00:00 2001 From: Brian Dukes Date: Wed, 1 Dec 2021 08:45:14 -0600 Subject: [PATCH] Use SHA instead of Merge Commit SHA for workflow See #4926 --- .github/workflows/open-merged-pr-to-future.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/open-merged-pr-to-future.yml b/.github/workflows/open-merged-pr-to-future.yml index a9391857a3c..8270df63d98 100644 --- a/.github/workflows/open-merged-pr-to-future.yml +++ b/.github/workflows/open-merged-pr-to-future.yml @@ -7,7 +7,7 @@ on: - develop jobs: - open-merged-pr-to-ten-branch: + open-merged-pr-to-release-branch: runs-on: ubuntu-latest if: ${{ github.event.pull_request.merged }} steps: @@ -17,12 +17,12 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - branch: v10/${{ github.event.pull_request.head.ref }}-${{ github.event.pull_request.head.merge_commit_sha }} + branch: v10/${{ github.event.pull_request.head.ref }}-${{ github.event.pull_request.head.sha }} - name: Create Pull Request uses: repo-sync/pull-request@v2.6 with: - source_branch: v10/${{ github.event.pull_request.head.ref }}-${{ github.event.pull_request.head.merge_commit_sha }} + source_branch: v10/${{ github.event.pull_request.head.ref }}-${{ github.event.pull_request.head.sha }} destination_branch: release/10.0.0 pr_title: v10 ${{ github.event.pull_request.title }} pr_body: |