Skip to content

Commit

Permalink
Merge pull request #450 from b-harvest/kogisin/448-add-markdown-link-…
Browse files Browse the repository at this point in the history
…checker

feat: add markdown links checker workflow
  • Loading branch information
dongsam committed Oct 6, 2021
2 parents aa1af26 + 9d729d0 commit d893be7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check Markdown links

on:
pull_request:
push:
branches:
- master
- develop
schedule:
- cron: '* */24 * * *'

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.13
with:
folder-path: "."

0 comments on commit d893be7

Please sign in to comment.