Skip to content

Commit fb88cf0

Browse files
Merge pull request #505 from Nordix/peppi-lotta/add-link-checker-action
🌱 Add broken link check action
2 parents 689965b + 9ee0679 commit fb88cf0

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: PR Check Links
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, reopened, synchronize, ready_for_review]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
check-pr-links:
12+
uses: metal3-io/project-infra/.github/workflows/pr-link-check.yml@main
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Scheduled Link Check
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "0 0 1 * *"
7+
repository_dispatch:
8+
# run manually
9+
types: [check-links]
10+
11+
permissions:
12+
contents: read
13+
issues: write
14+
15+
jobs:
16+
check-links:
17+
uses: metal3-io/project-infra/.github/workflows/scheduled-link-check.yml@main

.lycheeignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# https://github.com/issues based urls give error 404 if user is not logged in.
2+
https://github.com/issues
3+
4+
# Pages with rigorous bot detection
5+
https://www.dell.com/
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cluster-api-provider-metal3 features
22

3-
- [Remediation](capm3/remediaton.md)
4-
- [Node Reuse](capm3/node_reuse.md)
5-
- [Pivoting](capm3/pivoting.md)
6-
- [Automated cleaning](capm3/automated_cleaning.md)
7-
- [Label synchronization](capm3/label_sync.md)
3+
- [Remediation](./remediaton.md)
4+
- [Node Reuse](./node_reuse.md)
5+
- [Pivoting](./pivoting.md)
6+
- [Automated cleaning](./automated_cleaning.md)
7+
- [Label synchronization](./label_sync.md)

0 commit comments

Comments
 (0)