mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
d3abc9b516
Bumps [mheap/github-action-required-labels](https://github.com/mheap/github-action-required-labels) from 4 to 5. - [Release notes](https://github.com/mheap/github-action-required-labels/releases) - [Commits](https://github.com/mheap/github-action-required-labels/compare/v4...v5) --- updated-dependencies: - dependency-name: mheap/github-action-required-labels dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
461 B
YAML
23 lines
461 B
YAML
name: Check labels
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, labeled, unlabeled, synchronize]
|
|
|
|
permissions:
|
|
issues: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
label:
|
|
name: DO-NOT-MERGE / unresolved review
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: mheap/github-action-required-labels@v5
|
|
with:
|
|
mode: exactly
|
|
count: 0
|
|
labels: "DO-NOT-MERGE, awaiting changes, awaiting change review"
|