From 97bf11c6effac09eff3d2f2351fbb08c0cd73942 Mon Sep 17 00:00:00 2001 From: Kamil Emeleev Date: Tue, 11 Aug 2026 15:53:52 +0300 Subject: [PATCH] chore: skip TLS verification for the Mattermost webhook --- .github/workflows/pr-notification.yml | 4 ++++ .github/workflows/release.yml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/pr-notification.yml b/.github/workflows/pr-notification.yml index 58755b003..414a6813d 100644 --- a/.github/workflows/pr-notification.yml +++ b/.github/workflows/pr-notification.yml @@ -15,6 +15,8 @@ jobs: - name: Notification to main channel if: ${{ github.actor != 'dependabot[bot]' }} uses: mattermost/action-mattermost-notify@v2.1.0 + env: + NODE_TLS_REJECT_UNAUTHORIZED: '0' with: MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }} MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_NAME }} @@ -23,6 +25,8 @@ jobs: - name: Notification to dev channel uses: mattermost/action-mattermost-notify@v2.1.0 + env: + NODE_TLS_REJECT_UNAUTHORIZED: '0' with: MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }} MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_BOT_PR }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f64290687..5dcffa1ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,6 +52,8 @@ jobs: - name: Notify Mattermost uses: mattermost/action-mattermost-notify@v2.1.0 + env: + NODE_TLS_REJECT_UNAUTHORIZED: '0' with: MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }} MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_NAME }}