chore: update Community Extensions docs #7518
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 | |
on: pull_request | |
# If two events are triggered within a short time in the same PR, cancel the run of the oldest event | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
markdown: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
files: '_posts/,docs/stable/' | |
separator: "," | |
filter_mode: added | |
fail_on_error: false | |
- uses: articulate/actions-markdownlint@main | |
with: | |
config: .markdownlint.jsonc | |
files: 'docs/stable/**/*.md _posts/*.md' | |
python: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: psf/black@stable | |
with: | |
options: "--check --skip-string-normalization --verbose --diff --color" | |
src: "./scripts" | |
version: "24.8.0" |