Skip to content

Commit

Permalink
skip version-specific/* pages in MarkdownLint and codespell checks
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Jan 4, 2023
1 parent 90a0dd3 commit d305ec1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/markdown-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ jobs:
- name: MarkdownLint mdl Action
uses: actionshub/markdownlint@2.0.2
with:
filesToIgnoreRegex: "docs/demos/.*"
# filter out version-specific/* for now, until we fix all issues that mdl trips over
filesToIgnoreRegex: "docs/demos/.*|docs/version-specific/.*"
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
with:
check_filenames: true
ignore_words_list: atleast,ninjs,simpy,proovread,namd,precice
exclude_file: docs/js/asciinema-player-2.6.1.js
# filter out version-specific/* for now, until we fix all issues that mdl trips over
exclude_file: 'docs/js/asciinema-player-2.6.1.js|docs/version-specific/*'

- name: check internal links
run: |
Expand Down

0 comments on commit d305ec1

Please sign in to comment.