Skip to content

Commit

Permalink
fix: pr creation step
Browse files Browse the repository at this point in the history
  • Loading branch information
jsenko committed Oct 9, 2023
1 parent fe3e7af commit d3e9586
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-phase2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit d3e9586

Please sign in to comment.