Skip to content

Commit

Permalink
👷 Add missing workflow for broken links detection (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Galileo-Galilei committed Aug 30, 2021
1 parent c1d9e68 commit 1df2b48
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: check-links

on:
push:
branches: [master]
tags:
- '*'
pull_request:
branches: [master]
schedule:
- cron: '0 3 * * 1' # runs at 3 AM every monday

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: 'mlc_config.json'

0 comments on commit 1df2b48

Please sign in to comment.