-
Notifications
You must be signed in to change notification settings - Fork 15
/
.mergify.yml
31 lines (31 loc) · 934 Bytes
/
.mergify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pull_request_rules:
- name: assign and label eikek-scala-steward's PRs
conditions:
- author=eikek-scala-steward[bot]
actions:
assign:
users: [eikek]
label:
add: ["type: dependencies"]
- name: label eikek-scala-steward's breaking PRs
conditions:
- author=eikek-scala-steward[bot]
- "body~=(labels: library-update, early-semver-major)|(labels: sbt-plugin-update, early-semver-major)"
actions:
label:
add: ["type: breaking"]
- name: automatically merge Scala Steward PRs on CI success
conditions:
- author=eikek-scala-steward[bot]
- base=master
- status-success=ci
actions:
merge:
method: squash
- name: automatic update for dependency update PRs
conditions:
- -conflict # skip PRs with conflicts
- -draft # filter-out GH draft PRs
- "label=type: dependencies"
actions:
update: {}