Crash on iOS: EXC_BAD_ACCESS in ossl_init_thread_start during ziti_enroll flow (OpenSSL / Ziti SDK threading issue) #1617
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-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" |