Skip to content

Commit 8dd0b67

Browse files
committed
Fix conditional to open PRs in OLM workflow
1 parent 874783e commit 8dd0b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/olm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ jobs:
221221
name: Create branch for Openshift Marketplace PR
222222
runs-on: ubuntu-latest
223223
needs: test-olm-package
224-
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
224+
if: ${{ github.event_name == 'release' || inputs.release == true }}
225225
steps:
226226
- name: Checkout community-operators-prod fork (Openshift Ecosystem)
227227
uses: actions/checkout@v5

0 commit comments

Comments
 (0)