DOCS-3423: Add some feedback from Adrienne and redesign deploy.md based on Eliot's feedback for capture sync #12925
Workflow file for this run
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
name: Lint Markdown files | |
concurrency: | |
group: pullrequest-untrusted-markdownlint-${{ github.event.number }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
markdown_lint: | |
name: Check Markdown files | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Markdown Lint | |
uses: ruzickap/action-my-markdown-linter@v1 | |
with: | |
config_file: .markdownlint.yaml | |
search_paths: | | |
docs/ | |
exclude: | | |
assets/ | |
themes/ | |
static/ | |
layouts/ |