You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
patterns/.github/workflows/url-check-periodic.yml

19 lines
435 B
YAML

name: Check Markdown links Periodically
on:
schedule:
# Run everyday at 0:00 AM
- cron: "0 0 * * *"
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-verbose-mode: 'yes'
use-quiet-mode: 'yes'
config-file: '.github/workflows/url-check-config.json'
base-branch: 'main'