From d3e95867531521acf775569d2df2b5960bc286c5 Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Mon, 9 Oct 2023 22:46:34 +0200 Subject: [PATCH] fix: pr creation step --- .github/workflows/release-phase2.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-phase2.yaml b/.github/workflows/release-phase2.yaml index 3168410..c4d9669 100644 --- a/.github/workflows/release-phase2.yaml +++ b/.github/workflows/release-phase2.yaml @@ -60,8 +60,8 @@ jobs: git add . git commit -s -m "$TITLE" git push -f source "$RELEASE_BRANCH" - gh repo set-default jsenko/community-operators - gh pr create --title "$TITLE" --body "$BODY" --base origin/main --head "$RELEASE_BRANCH" + gh repo set-default k8s-operatorhub/community-operators + gh pr create --title "$TITLE" --body "$BODY" --base main --head "source:$RELEASE_BRANCH" - name: Checkout the Openshift Community Operators repository run: | @@ -87,8 +87,8 @@ jobs: git add . git commit -s -m "$TITLE" git push -f source "$RELEASE_BRANCH" - gh repo set-default jsenko/community-operators-prod - gh pr create --title "$TITLE" --body "$BODY" --base origin/main --head "$RELEASE_BRANCH" + gh repo set-default redhat-openshift-ecosystem/community-operators-prod + gh pr create --title "$TITLE" --body "$BODY" --base main --head "source:$RELEASE_BRANCH" - name: Setup tmate session if: failure() && inputs.debug