We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8654994 + 41900e8 commit 4ae8bd9Copy full SHA for 4ae8bd9
.github/workflows/lint_links.yml
@@ -12,14 +12,15 @@ on:
12
- ".github/workflows/lint_links.yml"
13
- "**.md"
14
schedule:
15
- # run CI at 09:00, on day 1 of the month even if no PRs/merges occur
16
- - cron: "0 9 1 * *"
+ # run CI at 09:00 every Tuesday even if no PRs/merges occur
+ - cron: "0 9 * * 2"
17
18
jobs:
19
markdown-link-check:
20
runs-on: ubuntu-latest
21
steps:
22
- - uses: actions/checkout@master
+ - uses: actions/checkout@v3
23
- uses: gaurav-nelson/github-action-markdown-link-check@v1
24
with:
25
use-quiet-mode: "yes"
26
+ check-modified-files-only: ${{ (github.event_name == 'pull_request' && 'yes') || 'no' }}
0 commit comments