Skip to content

chore(main): Release v4.95.1 #1497

chore(main): Release v4.95.1

chore(main): Release v4.95.1 #1497

Workflow file for this run

name: Lint Markdown files
on:
pull_request:
paths:
- ".github/workflow/lint_markdown.yml"
- "**.md"
permissions:
contents: read
jobs:
lint-grammar:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Git checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- run: |
venv="$HOME/.local/share/venv"
python3 -m venv "$venv"
echo "$venv/bin" >> $GITHUB_PATH
- name: Vale
uses: errata-ai/vale-action@0135b9fe2b3107365569cc3142b9a1c85221ea2f
with:
vale_flags: "--glob=!{docs/testdata/*,CHANGELOG.md,.github/styles/proselint/README.md,examples/simple_plugin/docs/*.md,coverage.md}"
filter_mode: nofilter
version: '3.0.3'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
lint-structure:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Git checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: markdownlint-cli
uses: nosborn/github-action-markdown-cli@508d6cefd8f0cc99eab5d2d4685b1d5f470042c1 # v3.5.0
with:
files: .
config_file: .markdownlint.yaml
ignore_files: "{docs/testdata/*,CHANGELOG.md,examples/simple_plugin/docs/*.md,coverage.md}"