From bd653ecb45dceb6eb72c19c84b510e3e7ffbcc5d Mon Sep 17 00:00:00 2001 From: Corey Carvalho <44616801+coreycarvalho@users.noreply.github.com> Date: Thu, 7 Nov 2024 14:42:03 -0500 Subject: [PATCH] HOTFIX - Remove automatic release note sending to Slack (#2107) --- .github/workflows/cd-pipeline.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 53c4323a82..2a0cb14218 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -124,22 +124,4 @@ jobs: with: environment: prod ref: ${{ needs.create-and-post-tag.outputs.newVersion }} - lambdaDeploy: true - - send-slack-notifications: - needs: [deploy-to-prod, create-and-post-tag] - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Post to Oddball Slack - env: - SLACK_WEBHOOK_URL: ${{ secrets.RELEASE_NOTES_SLACK_WEBHOOK }} - TAG: ${{ needs.create-and-post-tag.outputs.newVersion }} - run: | - curl -X POST -H 'Content-type: application/json' \ - --data "{ - \"text\": \":llama: Production Release Alert :llama:\n*Notification-API* \`${TAG}\` was released to production.\n:rocket: **\" - }" \ - "$SLACK_WEBHOOK_URL" \ No newline at end of file + lambdaDeploy: true \ No newline at end of file