Check Markdown Links #80
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
# GitHub Action from: https://github.com/gaurav-nelson/github-action-markdown-link-check | |
# Uses code from: https://github.com/tcort/markdown-link-check | |
name: Check Markdown Links | |
on: | |
push: | |
schedule: | |
# Run monthly | |
# GitHub actions uses UTC for time zone | |
# crontab format: minute hour day-of-month month day-of-week | |
- cron: "41 4 4 * *" | |
workflow_dispatch: | |
inputs: | |
message: | |
description: Message to display in job summary | |
required: false | |
type: string | |
jobs: | |
markdown-link-check: | |
name: call-markdown-link-check-workflow | |
uses: Andy4495/.github/.github/workflows/CheckMarkdownLinks.yml@main | |
with: | |
message: ${{ inputs.message }} | |