Skip to content

Workflow Failure Notify #96

Workflow Failure Notify

Workflow Failure Notify #96

name: Workflow Failure Notify
permissions:
contents: read
on:
workflow_run:
workflows: ["Lint and Test"]
types: [completed]
jobs:
notify_on_failure:
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
uses: tulibraries/.github/.github/workflows/slack-notify.yml@main
with:
repo: ${{ github.event.workflow_run.repository.full_name }}
run_id: ${{ github.event.workflow_run.id }}
workflow: ${{ github.event.workflow_run.name }}
secrets: inherit