./extras/**/*.md is now included in base action #4
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
# https://github.com/lycheeverse/lychee-action | |
# https://github.com/lycheeverse/lychee | |
name: Check 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: "2 4 4 * *" | |
workflow_dispatch: | |
inputs: | |
message: | |
description: Message to display in job summary | |
required: false | |
type: string | |
override-args: | |
description: Override default arguments (see https://github.com/lycheeverse/lychee#commandline-parameters) | |
required: false | |
type: string | |
jobs: | |
link-checker: | |
name: Call Link Checker | |
uses: Andy4495/.github/.github/workflows/check-links.yml@main | |
with: | |
message: ${{ inputs.message }} | |
# Additional files to scan for links beyond default *.md **/*.md ./extras/**/*.md | |
extra-input-files: | |
override-args: ${{ inputs.override-args }} | |
# Use the following to exclude certain URLs from the check. Need to include "--exclude" in the definition. | |
# For example, --exclude '43oh.com' | |
exclude: | |