Skip to content

Commit 87cfabb

Browse files
authored
Add awesomebot link checker (#486)
Add a github action to check the links in README.md Signed-off-by: Joe Block <jpb@unixorn.net>
1 parent 578bffc commit 87cfabb

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/awesomebot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Check links in README
3+
4+
on:
5+
push:
6+
branches: [ '*' ]
7+
pull_request:
8+
branches: [ '*' ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
# Full git history is needed to get a proper list of changed files
19+
# within `mega-linter`
20+
fetch-depth: 0
21+
- uses: docker://dkhamsing/awesome_bot:latest
22+
with:
23+
args: /github/workspace/README.md --allow-ssl --allow 202,500,501,502,503,504,509,521 --allow-dupe --allow-redirect --request-delay 1

0 commit comments

Comments
 (0)