mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
"awaiting changes" means somebody put a review that requested changes.
"awaiting change review" means that the PR author published changes
after a red review and then requested a re-review.
(cherry picked from commit b51da991e2)
18 lines
410 B
YAML
18 lines
410 B
YAML
name: Check labels
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, labeled, unlabeled, synchronize]
|
|
|
|
jobs:
|
|
label:
|
|
name: DO-NOT-MERGE / unresolved review
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: mheap/github-action-required-labels@v4
|
|
with:
|
|
mode: exactly
|
|
count: 0
|
|
labels: "DO-NOT-MERGE, awaiting changes, awaiting change review"
|