Skip to content

Commit

Permalink
Simplify check-links.yaml (markdown-link-check) (#6720)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Aug 27, 2020
1 parent a8d4f14 commit 363cb19
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Check external href links in the documentation

on:
push:
paths:
- '**.md'
schedule:
# Run on the first of each month at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07)
- cron: "0 9 1 * *"
Expand All @@ -10,11 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare markdown-link-check
run: mkdir docs/ROOT && cp CHANGELOG.md README.md docs/ROOT
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'no'
config-file: 'mlc_config.json'
folder-path: 'docs/'
file-path: './CHANGELOG.md, ./README.md'

0 comments on commit 363cb19

Please sign in to comment.