mirror of
https://github.com/openziti/zrok.git
synced 2024-11-21 23:53:19 +01:00
Initial commit
This commit is contained in:
parent
50d37132a1
commit
ead4f80297
33
.github/workflows/zhook.yml
vendored
Normal file
33
.github/workflows/zhook.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
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:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
mattermost-ziti-webhook:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: POST Webhook
|
||||||
|
steps:
|
||||||
|
- uses: openziti/ziti-mattermost-action-py@main
|
||||||
|
if: |
|
||||||
|
(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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user