Merge pull request #961 from openziti/prune-broken-landing-links #8908
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mattermost-ziti-webhook | |
on: | |
issues: | |
types: [opened, deleted, transferred, closed, reopened] | |
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: | |
if: github.repository_owner == 'openziti' | |
runs-on: ubuntu-latest | |
name: POST Webhook | |
steps: | |
- name: debug | |
run: echo "$GITHUB_CONTEXT" | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
- uses: openziti/ziti-mattermost-action-py@main | |
if: | | |
env.ZHOOK_URL != null | |
&& !( | |
github.event_name == 'issue_comment' | |
&& github.event.sender.login == 'vercel[bot]' | |
&& (contains(github.event.comment.body, 'Building') || contains(github.event.comment.body, 'Ignored')) | |
) | |
&& !(github.event_name == 'pull_request_review' && github.event.review.state != 'approved') | |
env: | |
ZHOOK_URL: ${{ secrets.ZHOOK_URL }} | |
with: | |
zitiId: ${{ secrets.ZITI_MATTERMOST_IDENTITY }} | |
webhookUrl: ${{ secrets.ZHOOK_URL }} | |
eventJson: ${{ toJson(github.event) }} | |
senderUsername: "GitHubZ" | |
destChannel: "dev-notifications" |