From ead4f802975fc714f10b41029b6812585276d012 Mon Sep 17 00:00:00 2001 From: Dave Hart Date: Tue, 19 Jul 2022 19:10:32 -0400 Subject: [PATCH] Initial commit --- .github/workflows/zhook.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/zhook.yml diff --git a/.github/workflows/zhook.yml b/.github/workflows/zhook.yml new file mode 100644 index 00000000..a06b77c5 --- /dev/null +++ b/.github/workflows/zhook.yml @@ -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" +