File tree Expand file tree Collapse file tree 2 files changed +28
-23
lines changed Expand file tree Collapse file tree 2 files changed +28
-23
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Check markdown links
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - " **.md"
7
+ pull_request :
8
+ paths :
9
+ - " **.md"
10
+ schedule :
11
+ - cron : " 30 22 * * 1,4"
12
+
13
+ # Restrict jobs in this workflow to have no permissions by default; permissions
14
+ # should be granted per job as needed using a dedicated `permissions` block
15
+ permissions : {}
16
+
17
+ jobs :
18
+ check :
19
+ permissions :
20
+ contents : read # to fetch code (actions/checkout)
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24
+ - uses : tcort/github-action-markdown-link-check@a800ad5f1c35bf61987946fd31c15726a1c9f2ba # v1.1.0
25
+ with :
26
+ use-quiet-mode : " yes"
27
+ base-branch : " master"
28
+ check-modified-files-only : ${{ github.event_name == 'schedule' && 'yes' || 'no'}}
You can’t perform that action at this time.
0 commit comments