v2.0.3 #31307
Workflow file for this run
This file contains hidden or 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-nodejs-webhook | |
| on: | |
| create: | |
| delete: | |
| issues: | |
| issue_comment: | |
| pull_request_review: | |
| pull_request_review_comment: | |
| pull_request: | |
| push: | |
| fork: | |
| release: | |
| jobs: | |
| mattermost-ziti-nodejs-webhook: | |
| continue-on-error: true | |
| # the webhook is dialed over the ziti overlay with no client-side connect timeout; when the service is down this | |
| # job has sat for hours, stalling anything that waits on the checks for a revision | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-24.04 | |
| name: POST Webhook with NodeJS | |
| if: github.repository_owner == 'openziti' && github.actor != 'dependabot[bot]' | |
| env: | |
| ZITI_LOG: 99 | |
| ZITI_NODEJS_LOG: 99 | |
| steps: | |
| - uses: openziti/ziti-webhook-action@main | |
| with: | |
| ziti-id: ${{ secrets.ZITI_MATTERMOST_IDENTITY }} | |
| webhook-url: ${{ secrets.ZITI_MATTERMOST_WEBHOOK_URL }} | |
| webhook-secret: ${{ secrets.ZITI_MATTERMOSTI_WEBHOOK_SECRET }} | |