Skip to content

Commit

Permalink
fix: Fix Slack Notification Step
Browse files Browse the repository at this point in the history
  • Loading branch information
jigisha620 committed Apr 2, 2024
1 parent b17e97d commit 5122901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/e2e/slack/notify/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ runs:
SUITE: ${{ inputs.suite }}
WORKFLOW: ${{ inputs.workflow_trigger }}
run: |
if [[ ${{ github.event_name }} == "schedule" && "$WORKFLOW" == 'private_cluster']]; then
if [[ ${{ github.event_name }} == "schedule" && "$WORKFLOW" == 'private_cluster' ]]; then
RUN_NAME="privateCluster-periodic"
elif [[ ${{ github.event_name }} == "schedule" && "$WORKFLOW" == 'soak']]; then
elif [[ ${{ github.event_name }} == "schedule" && "$WORKFLOW" == 'soak' ]]; then
RUN_NAME="soak-periodic"
elif [[ ${{ github.event_name }} == "schedule" ]]; then
RUN_NAME="$SUITE-periodic"
Expand Down

0 comments on commit 5122901

Please sign in to comment.