From 67c99b1f1a03a1135063b12b04b8284f163afd13 Mon Sep 17 00:00:00 2001 From: Jack Green Date: Tue, 3 Dec 2024 17:47:37 +0000 Subject: [PATCH] Fix Backport workflow action branch specification (#1414) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport’s default branch is master, not main. [Slack discussion](https://hazelcast.slack.com/archives/C035HQET5/p1733245920694469). --- .github/workflows/backport-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backport-workflow.yml b/.github/workflows/backport-workflow.yml index 1cc46da3f..737e494e9 100644 --- a/.github/workflows/backport-workflow.yml +++ b/.github/workflows/backport-workflow.yml @@ -34,7 +34,7 @@ jobs: fetch-depth: 0 - if: ${{ steps.check_pr_labels.outputs.result == 'true' }} - uses: hazelcast/backport/.github/actions/backport@main + uses: hazelcast/backport/.github/actions/backport@master with: GITHUB_TOKEN: ${{ github.token }} TARGET_BRANCH: ${{ inputs.target-branch }}