fix: 4.智能搜索技术,完善补充+格式修改 #51
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
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v18 | |
with: | |
globs: '**/*.md' | |
config: '.markdownlint.yaml' | |
fix: true | |
- name: autocorrect | |
if: failure() | |
uses: huacnlee/autocorrect-action@v2 | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
reviewdog: true |