Skip to content

docs: update release note for 1.0.18.1 in idmp official docs #974

docs: update release note for 1.0.18.1 in idmp official docs

docs: update release note for 1.0.18.1 in idmp official docs #974

Workflow file for this run

name: Check Docs
on:
pull_request:
branches:
- 'main'
paths:
- 'docs/**'
- 'i18n/en/docusaurus-plugin-content-docs/current/**'
- '.github/workflows/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install markdownlint
run: sudo npm install -g markdownlint-cli
- name: Run Markdown Lint
run: markdownlint -c .github/workflows/markdown_config.json --ignore .agent ./
- name: Check Typos
uses: crate-ci/typos@v1.31.1
with:
files: ./**/*.md
exclude: .agent/**
config: .github/workflows/typos.toml
- name: Check Typos for i18n
uses: crate-ci/typos@v1.31.1
with:
files: ./i18n/en/docusaurus-plugin-content-docs/current
config: .github/workflows/typos.toml
- name: Check with AutoCorrect
uses: huacnlee/autocorrect-action@v2
with:
args: --lint ./**/*.md
# - name: Report ReviewDog
# if: always()
# uses: tomchon/autocorrect-action@fix/review-dog
# env:
# REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# reviewdog: true
# args: ./docs/
- name: Check Markdown Lint Cli2
uses: DavidAnson/markdownlint-cli2-action@v20
with:
config: '.github/workflows/.markdownlint-cli2.jsonc'
globs: |
**/*.md
!.agent/**
build:
needs:
- check
uses: ./.github/workflows/build_docs.yaml