From d1808971079c409d9f9fdd9758a34126b423e579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eerban=20Ghi=C5=A3=C4=83?= Date: Mon, 12 Feb 2024 15:04:35 +0200 Subject: [PATCH] Update 4.8.x-test.yml Removed Slack --- .github/workflows/4.8.x-test.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/4.8.x-test.yml b/.github/workflows/4.8.x-test.yml index 755ea7d3..6ccd106e 100644 --- a/.github/workflows/4.8.x-test.yml +++ b/.github/workflows/4.8.x-test.yml @@ -55,20 +55,3 @@ jobs: - name: Run tests run: XDEBUG_MODE=coverage && phpunit -v -c tests/phpunit.xml --coverage-text --strict-coverage --stop-on-risky shell: bash - - - name: Slack Notification - uses: 8398a7/action-slack@v3 - with: - status: custom - fields: commit,repo,ref,author - custom_payload: | - { - attachments: [{ - color: '${{ job.status }}' === 'success' ? 'good' : '${{ job.status }}' === 'failure' ? 'danger' : 'warning', - text: `${process.env.AS_AUTHOR} has pushed ${process.env.AS_COMMIT} in ${process.env.AS_REPO} with test status indicating ${{ job.status }}.`, - }] - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - MATRIX_CONTEXT: ${{ toJson(matrix) }} - if: always() # Pick up events even if the job fails or is canceled.