From a3055890f7806ccd90f3b9b158b60f50511f4587 Mon Sep 17 00:00:00 2001 From: Paillat Date: Sat, 3 May 2025 16:54:35 +0200 Subject: [PATCH] Fix incorrect base branch --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 13aa562..626062a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -85,7 +85,7 @@ jobs: EXISTING_PR=$(gh pr list --search "is:open label:emojis" --json headRefName,number,author -q '.[0]') if [ -z "$EXISTING_PR" ]; then echo "No existing PR found, creating a new one." - gh pr create --base main --head ${{ env.branch_name }} --title "Emojis Auto Update" --body "This PR was created automatically by the Emojis Auto Update workflow." --label emojis + gh pr create --base master --head ${{ env.branch_name }} --title "Emojis Auto Update" --body "This PR was created automatically by the Emojis Auto Update workflow." --label emojis else echo "An existing PR was found: $EXISTING_PR" fi