mirror of
https://github.com/Ravencentric/awesome-arr.git
synced 2026-04-17 21:54:08 +02:00
28 lines
646 B
YAML
28 lines
646 B
YAML
name: Link Checker
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
link-checker:
|
|
permissions:
|
|
contents: read
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@885c65f3dc543b57c898c8099f4e08c8afd178a2 # v2.6.1
|
|
with:
|
|
args: >-
|
|
--verbose --no-progress
|
|
--exclude-path '\.github'
|
|
--max-redirects 10
|
|
--accept 200,204,206,403,429
|
|
'./*.md'
|