blob: 3d3180052fc8fe44d533bb71e9475c3f8ffd3d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
name: Broken Link Checker
permissions:
contents: read
# runs on prs containing markdown or html changes, as well as every monday at 9 am
on:
pull_request:
paths:
- "**.md"
- "**.html"
schedule:
- cron: "0 9 * * 1"
jobs:
link-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: lycheeverse/lychee-action@9ace499fe66cee282a29eaa628fdac2c72fa087f
with:
fail: true
jobSummary: false
|