Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/pr-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Comment thread
KamilEmeleev marked this conversation as resolved.
with:
MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }}
MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_NAME }}
Expand All @@ -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 }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
Loading