forked from sovity/edc-ce
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: speed-up documenation PRs (sovity#926)
- Loading branch information
1 parent
95edac2
commit cdbcf72
Showing
3 changed files
with
30 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Documentation Checks | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
release: | ||
types: [ published ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
markdown-link-checks: | ||
name: Markdown Link Checks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: FranzDiebold/github-env-vars-action@v2 | ||
- uses: actions/checkout@master | ||
- name: "Markdown Link Checker: Generate Config" | ||
run: .github/markdown-link-checker-config.jq > .github/markdown-link-checker-config.json | ||
- name: "Markdown Link Checker: Validate Links" | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
config-file: '.github/markdown-link-checker-config.json' |
This file contains 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