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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.7.0
|
|
with:
|
|
args: >-
|
|
--verbose --no-progress
|
|
--exclude-path '\.github'
|
|
--max-redirects 10
|
|
--accept 200,204,206,403,429
|
|
'./*.md'
|