Skip to content

Commit

Permalink
debug markdown checker action
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed May 27, 2023
1 parent 99617fb commit d0424b6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/cron-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,27 @@ name: Markdown Links Check
on:
schedule:
- cron: '0 9 * * 1'
workflow_dispatch:
# To test fixes on push rather than wait for the scheduling, do the following:
# 1. Uncomment the lines below and add your branch.
push:
branches:
- chore/link-checker
# 2. 👉 DON'T FORGET TO COMMENT OUT THE CODE BACK BEFORE YOU MERGE YOUR CHANGES!

jobs:
check-links:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./docs
steps:
- uses: actions/checkout@v3
- uses: gaurav-nelson/github-action-markdown-link-check@v1
# checks all markdown files from important folders including all subfolders
with:
# only show errors that occur instead of successful links + errors
use-quiet-mode: 'yes'
# use-quiet-mode: 'yes'
# output full HTTP info for broken links
use-verbose-mode: 'yes'
config-file: '.github/workflows/markdown-link-check-config.json'

0 comments on commit d0424b6

Please sign in to comment.