update ovn eip fip dnat snat in 1.12 #404
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: markdown-lint | |
on: | |
pull_request_target: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
markdown-lint: | |
name: lint | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: lint | |
run: | | |
npm install -g markdownlint-cli | |
npm install -g markdownlint-rule-search-replace@1.0.9 | |
pwd | |
markdownlint "**/*.md" --disable MD013 MD033 MD045 MD024 MD041 -r markdownlint-rule-search-replace | |
markdownlint -V | |
- uses: mshick/add-pr-comment@v2 | |
if: failure() | |
with: | |
message: | | |
Please fix the lint errors and update the PR. |