ci(deps): update ios cocoapods deps to v0.34.2 (#52) #41
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
# Copyright (C) 2023 TomTom NV. All rights reserved. | |
--- | |
name: Main Verification | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.ref }} | |
# clear out default permissions | |
permissions: {} | |
jobs: | |
build: | |
permissions: | |
contents: read | |
uses: ./.github/workflows/build.yaml | |
notify: | |
needs: build | |
if: failure() | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send slack notification | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.head_commit.url }}", | |
"blocks": [ | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.head_commit.url }}" | |
} | |
} | |
] | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK |