Bump urllib3 from 2.6.0 to 2.6.3 in the pip group across 1 directory #650
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 Check | |
| on: | |
| pull_request: | |
| types: | |
| - "opened" | |
| - "reopened" | |
| - "synchronize" | |
| - "labeled" | |
| - "unlabeled" | |
| jobs: | |
| files-changed: | |
| name: Files up-to-date | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cargo.lock up-to-date | |
| uses: brettcannon/check-for-changed-files@v1 | |
| with: | |
| prereq-pattern: Cargo.toml | |
| file-pattern: Cargo.lock | |
| skip-label: skip Cargo.lock | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Man page up-to-date | |
| uses: brettcannon/check-for-changed-files@v1 | |
| with: | |
| prereq-pattern: man-page/py.1.md | |
| file-pattern: man-page/py.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| impact: | |
| name: Impact specified | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "`impact` label specified" | |
| uses: mheap/github-action-required-labels@v5 | |
| with: | |
| mode: "exactly" | |
| count: 1 | |
| labels: "impact-breaking, impact-enhancement, impact-bugfix, impact-docs, impact-maintenance" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |