Skip to content

Commit

Permalink
ci(action): deploy check on Markdown links
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
  • Loading branch information
fpistm committed Feb 28, 2023
1 parent 621d759 commit 4f3e4fb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/MarkdwonLinksCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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@v3
- uses: JustinBeckwith/linkinator-action@v1
with:
skip: 'www.st.com'

0 comments on commit 4f3e4fb

Please sign in to comment.