-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
28 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 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 }} | ||
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: | ||
|
This file was deleted.
Oops, something went wrong.
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