Skip to content

Commit

Permalink
re-enable the mattermost hook
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Oct 3, 2024
1 parent d050fb9 commit 21ede9d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/mattermost-webhook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: mattermost-ziti-webhook
on:
create:
delete:
issues:
issue_comment:
pull_request_review:
types: [submitted]
pull_request_review_comment:
pull_request:
types: [opened, reopened]
push:
fork:
release:
types: [released]
workflow_dispatch:
watch:
types: [started]

jobs:
mattermost-ziti-webhook:
runs-on: ubuntu-latest
name: POST Webhook
steps:
- uses: openziti/ziti-mattermost-action-py@main
if: |
github.repository_owner == 'openziti'
&& ((github.event_name != 'pull_request_review')
|| (github.event_name == 'pull_request_review' && github.event.review.state == 'approved'))
with:
zitiId: ${{ secrets.ZITI_MATTERMOST_IDENTITY }}
webhookUrl: ${{ secrets.ZHOOK_URL }}
eventJson: ${{ toJson(github.event) }}
senderUsername: "GitHubZ"
destChannel: "dev-notifications"

0 comments on commit 21ede9d

Please sign in to comment.