Skip to content

Commit a952d97

Browse files
committed
ci: temporarily disable Slack notifications
1 parent 1873d11 commit a952d97

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

.github/workflows/run-tests.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,14 @@ jobs:
255255
npx playwright merge-reports --reporter html ./all-blob-reports
256256
npx playwright merge-reports --reporter json ./all-blob-reports > merged_reports.json
257257
258-
- name: Notify Slack
259-
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.head_ref == 'main'
260-
run: npx playwright-slack-report -j merged_reports.json -c tests/playwright-slack-conf.json
261-
env:
262-
SLACK_BOT_USER_OAUTH_TOKEN: ${{ secrets.SLACK_BOT_USER_OAUTH_TOKEN }}
263-
RESULTS_VERSION: ${{ matrix.version }}
264-
RESULTS_URL: ${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}
258+
# FIXME(serhalp) Once we recover access to the SquidlifyBot Slack App, reenable this.
259+
# - name: Notify Slack
260+
# if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.head_ref == 'main'
261+
# run: npx playwright-slack-report -j merged_reports.json -c tests/playwright-slack-conf.json
262+
# env:
263+
# SLACK_BOT_USER_OAUTH_TOKEN: ${{ secrets.SLACK_BOT_USER_OAUTH_TOKEN }}
264+
# RESULTS_VERSION: ${{ matrix.version }}
265+
# RESULTS_URL: ${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}
265266

266267
- name: Upload HTML report
267268
uses: actions/upload-artifact@v4

.github/workflows/test-e2e.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,13 @@ jobs:
261261
with:
262262
name: ${{matrix.version_spec.selector}}-test-results.json
263263
path: report/test-results.json
264-
- name: Notify Slack
265-
if: ${{ (success() || failure()) && github.event_name == 'schedule' }}
266-
uses: slackapi/[email protected]
267-
env:
268-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
269-
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
270-
with:
271-
payload: ${{ steps.publish-test-results.outputs.slackEvent }}
264+
265+
# FIXME(serhalp) Once we recover access to the SquidlifyBot Slack App, reenable this.
266+
# - name: Notify Slack
267+
# if: ${{ (success() || failure()) && github.event_name == 'schedule' }}
268+
# uses: slackapi/[email protected]
269+
# env:
270+
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
271+
# SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
272+
# with:
273+
# payload: ${{ steps.publish-test-results.outputs.slackEvent }}

0 commit comments

Comments
 (0)