aboutsummaryrefslogtreecommitdiff
path: root/.mergify.yml
blob: b09c861ae402ea282e469c0bcec9a2e1191ff50d (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
pull_request_rules:
  - name: remove outdated reviews
    conditions:
      - base=master
    actions:
      dismiss_reviews:

pull_request_rules:
  - name: automatic squash-and-merge on CI success and review
    conditions:
      - status-success=Travis CI - Pull Request
      - "#approved-reviews-by>=1"
      - "#changes-requested-reviews-by=0"
      - base=master
      - label="Please Merge"
      - label!="DO NOT MERGE"
      - label!="bp-conflict"
    actions:
      merge:
        method: squash
        strict: smart
        strict_method: merge

  - name: backport to 1.4.x
    conditions:
      - merged
      - base=master
      - milestone=1.4.x
    actions:
      backport:
        branches:
          - 1.4.x
        ignore_conflicts: True
        label_conflicts: "bp-conflict"
      label:
        add: [Backported]

  - name: backport to 1.3.x and 1.4.x
    conditions:
      - merged
      - base=master
      - milestone=1.3.x
    actions:
      backport:
        branches:
          - 1.3.x
          - 1.4.x
        ignore_conflicts: True
        label_conflicts: "bp-conflict"
      label:
        add: [Backported]

  - name: backport to 1.2.x, 1.3.x, and 1.4.x
    conditions:
      - merged
      - base=master
      - milestone=1.2.X
    actions:
      backport:
        branches:
          - 1.2.x
          - 1.3.x
          - 1.4.x
        ignore_conflicts: True
        label_conflicts: "bp-conflict"
      label:
        add: [Backported]

  - name: label Mergify backport PR
    conditions:
      - body~=This is an automated backport of pull request \#\d+ done by Mergify
    actions:
      label:
        add: [Backport]
        
  - name: automatic squash-and-merge of 1.4.x backport PRs
    conditions:
      - status-success=Travis CI - Pull Request
      - "#changes-requested-reviews-by=0"
      - base=1.4.x
      - label="Backport"
      - label!="DO NOT MERGE"
      - label!="bp-conflict"
    actions:
      merge:
        method: squash
        strict: smart
        strict_method: merge      

  - name: automatic squash-and-merge of 1.3.x backport PRs
    conditions:
      - status-success=Travis CI - Pull Request
      - "#changes-requested-reviews-by=0"
      - base=1.3.x
      - label="Backport"
      - label!="DO NOT MERGE"
      - label!="bp-conflict"
    actions:
      merge:
        method: squash
        strict: smart
        strict_method: merge

  - name: automatic squash-and-merge of 1.2.x backport PRs
    conditions:
      - status-success=Travis CI - Pull Request
      - "#changes-requested-reviews-by=0"
      - base=1.2.x
      - label="Backport"
      - label!="DO NOT MERGE"
      - label!="bp-conflict"
    actions:
      merge:
        method: squash
        strict: smart
        strict_method: merge