• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1mergeable:
2  pull_requests:
3    label:
4      and:
5        - must_exclude:
6            regex: '^disposition/DO NOT MERGE'
7            message: 'Pull request marked not mergeable'
8        - must_exclude:
9            regex: '^disposition/Needs Internal Changes'
10            message: 'Pull request must be cherrypicked. Remove this label when ready to merge.'
11        - or:
12          - and:
13            - must_include:
14                regex: '^release notes: yes'
15                message: 'Please add the label (release notes: yes)'
16            - must_include:
17                regex: '^lang\/'
18                message: 'Please add a language label (lang/...)'
19          - must_include:
20              regex: '^release notes: no'
21              message: 'Please add the label (release notes: no)'
22