mirror of
https://github.com/python/cpython.git
synced 2024-11-27 23:47:29 +01:00
18 lines
324 B
YAML
18 lines
324 B
YAML
|
name: Check labels
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [opened, reopened, labeled, unlabeled, synchronize]
|
||
|
|
||
|
jobs:
|
||
|
label:
|
||
|
name: DO-NOT-MERGE
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: mheap/github-action-required-labels@v4
|
||
|
with:
|
||
|
mode: exactly
|
||
|
count: 0
|
||
|
labels: "DO-NOT-MERGE"
|