Skip to content

Commit 398ea50

Browse files
committed
fix: gracefully handle existing PRs in pi_merge_submodule
1 parent 30060a1 commit 398ea50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pi_merge_submodule.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
--body "${{ github.event.pull_request.body }}" \
8080
--base dev \
8181
--head ${{ needs.configure-branch-name.outputs.gh_head_ref }} \
82-
--repo ${{ github.repository_owner }}/refinery-${{ matrix.parent_image_type }}-parent-image
82+
--repo ${{ github.repository_owner }}/refinery-${{ matrix.parent_image_type }}-parent-image || true
8383
8484
pi-update-app:
8585
name: 'Parent Images: App'
@@ -142,5 +142,5 @@ jobs:
142142
--body "${{ github.event.pull_request.body }}" \
143143
--base dev \
144144
--head ${{ needs.configure-branch-name.outputs.gh_head_ref }} \
145-
--repo ${{ github.repository_owner }}/${{ matrix.app }}
145+
--repo ${{ github.repository_owner }}/${{ matrix.app }} || true
146146

.github/workflows/pi_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ jobs:
7878
-o ${{ github.repository_owner }} \}}
7979
-r ${{ github.event.repository.name }} \}}
8080
-n ${{ github.event.release.tag_name }} \}}
81-
-a ${{ matrix.app }}
81+
-a ${{ matrix.app }}

0 commit comments

Comments
 (0)