1
- pull_request_rules :
2
- - name : Ask to resolve conflict
3
- conditions :
4
- - conflict
5
- - -author=dependabot[bot]
6
- - or :
7
- - -draft # Don't report conflicts on regular draft.
8
- - and : # Do report conflicts on draft that are scheduled for the next major release.
9
- - draft
10
- - milestone~=v[0-9]\.[0-9]{2}
11
- actions :
12
- comment :
13
- message : This pull request has merge conflicts. Could you please resolve them
14
- @{{author}}? 🙏
15
-
16
- - name : Approve trivial maintainer PRs
17
- conditions :
18
- - base!=stable
19
- - label=trivial
20
- - author=@sigp/lighthouse
21
- - -conflict
22
- actions :
23
- review :
24
- type : APPROVE
25
-
26
- - name : Add ready-to-merge labeled PRs to merge queue
27
- conditions :
28
- # All branch protection rules are implicit: https://docs.mergify.com/conditions/#about-branch-protection
29
- - base!=stable
30
- - label=ready-for-merge
31
- - label!=do-not-merge
32
- actions :
33
- queue :
34
-
35
1
queue_rules :
36
2
- name : default
37
3
batch_size : 8
@@ -40,16 +6,14 @@ queue_rules:
40
6
merge_method : squash
41
7
commit_message_template : |
42
8
{{ title }} (#{{ number }})
43
-
44
- {{ body | get_section("## Issue Addressed", "") }}
45
-
46
-
47
- {{ body | get_section("## Proposed Changes", "") }}
9
+
10
+ {% for commit in commits %}
11
+ * {{ commit.commit_message }}
12
+ {% endfor %}
48
13
queue_conditions :
49
14
- " #approved-reviews-by >= 1"
50
15
- " check-success=license/cla"
51
16
- " check-success=target-branch-check"
52
- - " label!=do-not-merge"
53
17
merge_conditions :
54
18
- " check-success=test-suite-success"
55
- - " check-success=local-testnet-success"
19
+ - " check-success=local-testnet-success"
0 commit comments