Skip to content

Commit e8861e8

Browse files
authored
Create awesomebot.yml
Add automatic link checker to the pipeline
1 parent d509ceb commit e8861e8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/awesomebot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Awesome Bot
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
links:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: ruby/setup-ruby@v1
14+
with:
15+
ruby-version: '2.7'
16+
17+
- name: Install Awesome Bot
18+
run: gem install awesome_bot
19+
20+
- name: Verify links
21+
run: awesome_bot README.md --skip-save-results

0 commit comments

Comments
 (0)