添加 HRT & RLE 信息 - University of Alberta - CANADA #527
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: 'pr-markdownlint' | |
| on: | |
| pull_request_target: | |
| paths: ['**/*.md'] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Fetch PR branch from fork | |
| run: gh pr checkout ${{ github.event.number }} | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: project-trans/pr-markdownlint-action@master | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |