-
Notifications
You must be signed in to change notification settings - Fork 40
27 lines (26 loc) · 1.43 KB
/
notify-failed-jobs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Notify on main failures
on:
workflow_run:
branches:
- main
types:
- completed
workflows:
- Build Catalyst Wheel on Linux (arm64)
- Build Catalyst Wheel on Linux (x86_64)
- Build Catalyst Wheel on macOS (arm64)
- Build Catalyst Wheel on macOS (x86_64)
- Build nightly Catalyst releases for TestPyPI
jobs:
on-failure:
runs-on: ubuntu-22.04
if: github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.conclusion == 'timed_out'
steps:
- uses: ravsamhq/notify-slack-action@v2
with:
status: ${{ github.event.workflow_run.conclusion }}
notification_title: " ${{github.event.workflow_run.name}} - ${{github.event.workflow_run.conclusion}} on ${{github.event.workflow_run.head_branch}} - <${{github.server_url}}/${{github.repository}}/actions/runs/${{github.event.workflow_run.id}}|View Failure>"
message_format: ":fire: *${{github.event.workflow_run.name}}* ${{github.event.workflow_run.conclusion}} in <${{github.server_url}}/${{github.repository}}/tree/${{github.event.workflow_run.head_branch}}|${{github.repository}}>"
footer: "Linked Repo <${{github.server_url}}/${{github.repository}}|${{github.repository}}> | <${{github.server_url}}/${{github.repository}}/actions/runs/${{github.event.workflow_run.id}}|View Failure>"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_NOTIFICATIONS_WEBHOOK_URL }}