Fix false PR event warnings for issue number collisionsFix false PR event warnings when issue numbers overlap with PR numbers (#3762) #1999
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: "run-linting-checks" | |
| on: | |
| pull_request: | |
| branches: [main, release] | |
| jobs: | |
| check-docs: | |
| name: runner / check docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Ensure docs build cleanly | |
| # Setting `O` to pass extra options to the sphinx-build command. | |
| run: O="-a -E -n -W --keep-going" make docs | |
| run-pylint: | |
| name: runner / pylint | |
| permissions: write-all | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dciborow/action-pylint@0.1.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review | |
| level: warning | |
| glob_pattern: "**/*.py" | |
| filter_mode: "diff_context" | |
| misspell: | |
| name: runner / misspell | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Highlight any misspellings in changes. | |
| uses: actions/checkout@v4 | |
| - name: misspell | |
| uses: reviewdog/action-misspell@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| locale: "US" | |
| uv-lock: | |
| name: runner / uv-lock | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Ensure uv lockfile is up to date | |
| run: uv lock --check |