Fix CPLB userspace on ipv6 only clusters #3249
Workflow file for this run
This file contains hidden or 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 docs | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
paths: | |
- '**.md' | |
- .github/workflows/docs.yml | |
- .markdownlint.jsonc | |
pull_request: | |
branches: | |
- main | |
- release-* | |
paths: | |
- '**.md' | |
- .github/workflows/docs.yml | |
- .markdownlint.jsonc | |
jobs: | |
lint: | |
name: Lint markdown | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DavidAnson/markdownlint-cli2-action@v19.1.0 | |
with: | |
config: .markdownlint.jsonc | |
globs: '**/*.md' |