DOCS-3273: Split out data export into data export binary and data export tabular #12500
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/ |