Skip to content

Commit

Permalink
dsds
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinputhenveettil committed Oct 3, 2024
1 parent 622ba81 commit 1146127
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/golang_rc_candidate_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- name: Run coverage commands
shell: bash
id: run_tests_with_rc
continue-on-error: true
run: |
#!/bin/bash
shopt -s expand_aliases
Expand Down Expand Up @@ -70,7 +71,7 @@ jobs:
echo "GO_RC_VERSION=$rcToInstall" >> $GITHUB_ENV
- name: Send sucess to slack channel
if: ${{ steps.run_tests_with_rc.conclusion == 'success'}}
if: ${{ steps.run_tests_with_rc.outcome == 'success'}}
uses: slackapi/slack-github-action@v1.24.0
with:
channel-id: ${{ secrets.SLACK_RELEASE_CHANNEL_ID }}
Expand All @@ -91,7 +92,7 @@ jobs:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
SLACK_RELEASE_CHANNEL_ID: ${{ secrets.SLACK_RELEASE_CHANNEL_ID }}
- name: Send sucess to slack channel
if: ${{ steps.run_tests_with_rc.conclusion == 'failure'}}
if: ${{ steps.run_tests_with_rc.outcome == 'failure'}}
uses: slackapi/slack-github-action@v1.24.0
with:
channel-id: ${{ secrets.SLACK_RELEASE_CHANNEL_ID }}
Expand Down

0 comments on commit 1146127

Please sign in to comment.