diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2023-04-25 00:48:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 00:48:17 (GMT) |
commit | 99db23d9413e35fe8b2337165d5c0dec712a0fa1 (patch) | |
tree | 8403ec23e0da00528a399aa97d730202b94c1eae /.github | |
parent | 56d50dd9fb9f7d0ef36a4dacebcb99cb1938fe24 (diff) | |
download | cpython-99db23d9413e35fe8b2337165d5c0dec712a0fa1.zip cpython-99db23d9413e35fe8b2337165d5c0dec712a0fa1.tar.gz cpython-99db23d9413e35fe8b2337165d5c0dec712a0fa1.tar.bz2 |
[3.11] Also fail DO-NOT-MERGE when "awaiting changes" or "awaiting change review" present on PR (GH-103807) (#103814)
"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 b51da991e2f7b47efaee2665356060edb6a6ece4)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/require-pr-label.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/require-pr-label.yml b/.github/workflows/require-pr-label.yml index 151a60c..916bbeb 100644 --- a/.github/workflows/require-pr-label.yml +++ b/.github/workflows/require-pr-label.yml @@ -6,7 +6,7 @@ on: jobs: label: - name: DO-NOT-MERGE + name: DO-NOT-MERGE / unresolved review runs-on: ubuntu-latest timeout-minutes: 10 @@ -15,4 +15,4 @@ jobs: with: mode: exactly count: 0 - labels: "DO-NOT-MERGE" + labels: "DO-NOT-MERGE, awaiting changes, awaiting change review" |