doc(iwatchdog): update with new GitHub alerts formatting #379
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Markdown Links | |
# runs every monday at 9 am | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.md' | |
pull_request: | |
paths: | |
- '**.md' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
linkinator: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JustinBeckwith/linkinator-action@v1 | |
with: | |
paths: '*.md ./CI/**/*.md, ./variants/**/*.md, ./libraries/**/*.md' | |
verbosity: 'INFO' | |
linksToSkip: 'www.st.com, blues.com' |