From 376a68138862099938f77faf420119bba74572e0 Mon Sep 17 00:00:00 2001 From: Andrew Matthews Date: Thu, 6 Feb 2025 17:41:28 -0500 Subject: [PATCH] Remove notify step from e2e deploy --- .github/workflows/e2e-deploy.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/e2e-deploy.yml b/.github/workflows/e2e-deploy.yml index 4176800..dcc94af 100644 --- a/.github/workflows/e2e-deploy.yml +++ b/.github/workflows/e2e-deploy.yml @@ -1,7 +1,7 @@ name: Test e2e Deploy to WP Engine on: schedule: - - cron: '*/5 * * * *' + - cron: '*/60 * * * *' push: branches: - main @@ -41,18 +41,3 @@ jobs: - name: Validate deploy results run: | [ ${{ fromJson(steps.fetchResult.outputs.response).status }} = "success" ] || exit 1 - notify: - runs-on: ubuntu-latest - if: ${{ !cancelled() }} - needs: run_action - steps: - - name: Notify slack on failure - if: needs.run_action.result == 'failure' && github.ref == 'refs/heads/main' - env: - SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }} - uses: voxmedia/github-action-slack-notify-build@v1 - with: - # Channel: status-site-deploy - channel_id: C04ELD8NMT4 - status: FAILED - color: danger