Skip to content

ci(deps): update ios cocoapods deps to v0.34.2 (#52) #41

ci(deps): update ios cocoapods deps to v0.34.2 (#52)

ci(deps): update ios cocoapods deps to v0.34.2 (#52) #41

# 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