From e0a75701129fb05b5db7a03fdd779891f7b24eef Mon Sep 17 00:00:00 2001 From: jon roethke Date: Fri, 20 Oct 2023 08:54:31 -0700 Subject: [PATCH] feat: add markdown link linter (#43) * feat: add .md link linter * fix: remove typo * fix: set base branch --- .github/workflows/markdown.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/markdown.yml diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml new file mode 100644 index 00000000..b1e37d53 --- /dev/null +++ b/.github/workflows/markdown.yml @@ -0,0 +1,24 @@ +name: Markdown + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + # Checks the status of hyperlinks in .md files + - name: Check links + uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + check-modified-files-only: 'yes' + base-branch: 'main' + \ No newline at end of file