diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml index c84a256..c350d23 100644 --- a/.github/workflows/markdownlint.yml +++ b/.github/workflows/markdownlint.yml @@ -1,6 +1,8 @@ name: Markdown Lint Action on: push: + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index bf0a458..9b2e5e2 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -1,6 +1,8 @@ name: Vale Action on: push: + branches: + - main pull_request: workflow_dispatch: diff --git a/.mdl_style.rb b/.mdl_style.rb index 466a6cb..162af4b 100644 --- a/.mdl_style.rb +++ b/.mdl_style.rb @@ -1,8 +1,8 @@ all # This should be 2 by default per the docs, but turned out to be 8 rule 'MD007', :indent => 2 -# Ignore line length in code blocks and tables -rule 'MD013', :ignore_code_blocks => true, :tables => false +# Ignore line length +exclude_rule 'MD013' # Allow inline HTML exclude_rule 'MD033' # Order ordered lists