Skip to content

Commit 2037948

Browse files
authored
Fix: missing == sign in Test Simbank workflow (#186)
Signed-off-by: Jade Carino <[email protected]>
1 parent ebe25a0 commit 2037948

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ jobs:
156156
# Skip this step for forks
157157
# Only report results if this workflow was called from
158158
# a regression run as Main builds run multiple times a day.
159-
if: ${{ github.repository_owner == 'galasa-dev' && github.event_name 'workflow_dispatch' }}
159+
if: ${{ github.repository_owner == 'galasa-dev' && github.event_name == 'workflow_dispatch' }}
160160
run: |
161161
jq -s '{ tests: map(.tests[]) }' ${{ github.workspace }}/.galasa/temp/test-1.json ${{ github.workspace }}/.galasa/temp/test-2.json ${{ github.workspace }}/.galasa/temp/test-3.json > ${{ github.workspace }}/.galasa/temp/tests.json
162162
163163
- name: Report results into Slack channel
164164
# Skip this step for forks.
165165
# Only report results if this workflow was called from
166166
# a regression run as Main builds run multiple times a day.
167-
if: ${{ github.repository_owner == 'galasa-dev' && github.event_name 'workflow_dispatch' }}
167+
if: ${{ github.repository_owner == 'galasa-dev' && github.event_name == 'workflow_dispatch' }}
168168
env:
169169
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
170170
run: |

0 commit comments

Comments
 (0)