Skip to content

Commit

Permalink
Merge pull request #111 from sclorg/fix_ga
Browse files Browse the repository at this point in the history
Fix missing brakes in GitHub Action
  • Loading branch information
phracek authored Oct 29, 2024
2 parents 5fdf075 + 97ade96 commit 68446fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openshift-tests-nos2i.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

if: |
github.event.issue.pull_request
&& contains((github.event.comment.body, '[test-nos2i]') || (github.event.comment.body, '[test-all]'))
&& (contains(github.event.comment.body, '[test-nos2i]') || contains(github.event.comment.body, '[test-all]'))
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
steps:
- name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openshift-tests-s2i.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

if: |
github.event.issue.pull_request
&& contains((github.event.comment.body, '[test-s2i]') || (github.event.comment.body, '[test-all]'))
&& (contains(github.event.comment.body, '[test-s2i]') || contains(github.event.comment.body, '[test-all]'))
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
steps:
- name: Checkout repo
Expand Down

0 comments on commit 68446fb

Please sign in to comment.