Bump actions/github-script from 8 to 9 #44
Workflow file for this run
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: 🔗 提交时检查 Markdown 格式 | |
| on: [pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: tj-actions/changed-files@v47 | |
| id: changed-files | |
| with: | |
| files: '**/*.md' | |
| separator: "," | |
| - uses: DavidAnson/markdownlint-cli2-action@v23 | |
| continue-on-error: true | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| with: | |
| config: '.github/.markdownlint.json' | |
| globs: ${{ steps.changed-files.outputs.all_changed_files }} | |
| separator: "," |