From 133667aa1e644e35d65be762533c3321da36030c Mon Sep 17 00:00:00 2001 From: Adam Curtis Date: Fri, 3 Nov 2023 10:31:51 -0400 Subject: [PATCH] comment out slack notification until its working --- .github/workflows/test-nightly.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/test-nightly.yml b/.github/workflows/test-nightly.yml index 78b381cb..6764d8e1 100644 --- a/.github/workflows/test-nightly.yml +++ b/.github/workflows/test-nightly.yml @@ -45,21 +45,21 @@ jobs: secrets: CLOUDTRUTH_API_KEY: ${{ secrets.CT_STAGING_CI_ADMIN_API_KEY }} - slack-notification: - name: Slack Notification - needs: test-nightly - # do not run on skipped or cancelled - if: ${{ always() && (success() || failure()) }} - runs-on: ubuntu-latest - steps: - - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: CLI Nightly Test - SLACK_CHANNEL: dev-notifications - SLACK_USERNAME: ${{ github.repository }} - SLACK_COLOR: ${{ needs.test-nightly.result }} - SLACK_ICON_EMOJI: ":crab:" - SLACK_MESSAGE: ${{ needs.test-nightly.result == 'success' && '✅ Passed' || needs.test-nightly.result == 'failure' && '❌ Failed' }} + # slack-notification: + # name: Slack Notification + # needs: test-nightly + # # do not run on skipped or cancelled + # if: ${{ always() && (success() || failure()) }} + # runs-on: ubuntu-latest + # steps: + # - uses: rtCamp/action-slack-notify@v2 + # env: + # SLACK_TITLE: CLI Nightly Test + # SLACK_CHANNEL: dev-notifications + # SLACK_USERNAME: ${{ github.repository }} + # SLACK_COLOR: ${{ needs.test-nightly.result }} + # SLACK_ICON_EMOJI: ":crab:" + # SLACK_MESSAGE: ${{ needs.test-nightly.result == 'success' && '✅ Passed' || needs.test-nightly.result == 'failure' && '❌ Failed' }} cleanup-nightly: name: Nightly Cleanup