24 lines
439 B
YAML
24 lines
439 B
YAML
name: Daily link check
|
|
|
|
on:
|
|
schedule:
|
|
# Daily at 02:00 UTC
|
|
- cron: "0 2 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
link-check:
|
|
uses: ./.github/workflows/reusable-link-check.yml
|
|
|
|
workflow-notification:
|
|
needs:
|
|
- link-check
|
|
if: always()
|
|
uses: ./.github/workflows/reusable-workflow-notification.yml
|
|
with:
|
|
success: ${{ needs.link-check.result == 'success' }}
|