-
-
Notifications
You must be signed in to change notification settings - Fork 204
26 lines (22 loc) · 695 Bytes
/
link-checker.yml
File metadata and controls
26 lines (22 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Links Checker
on:
workflow_dispatch:
schedule:
- cron: "0 0 1,15 * *" # twice a month
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2.6.1
with:
args: --accept '100..=103,200..=299,403,429' --exclude-all-private --timeout 60 .
- name: Create Issue From File
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: Broken Link Detected (Help Wanted)
content-filepath: ./lychee/out.md
labels: report, automated issue, good first issue