File tree Expand file tree Collapse file tree 1 file changed +44
-12
lines changed Expand file tree Collapse file tree 1 file changed +44
-12
lines changed Original file line number Diff line number Diff line change 1
- queue_rules :
2
- - name : default
3
- batch_size : 8
4
- batch_max_wait_time : 60 s
5
- checks_timeout : 10800 s
6
- merge_method : squash
7
- commit_message_template : |
8
- {{ title }} (#{{ number }})
9
-
10
- {% for commit in commits %}
11
- * {{ commit.commit_message }}
12
- {% endfor %}
1
+ defaults :
2
+ actions :
3
+ queue :
4
+ method : squash
5
+ commit_message_template : |
6
+ {{ title }} (#{{ number }})
7
+
8
+ {{ body | get_section("## Issue Addressed", "") }}
9
+
10
+
11
+ {{ body | get_section("## Proposed Changes", "") }}
13
12
queue_conditions :
14
13
- " #approved-reviews-by >= 1"
15
14
- " check-success=license/cla"
16
15
- " check-success=target-branch-check"
17
16
merge_conditions :
18
17
- " check-success=test-suite-success"
19
18
- " check-success=local-testnet-success"
19
+
20
+ pull_request_rules :
21
+ - name : Ask to resolve conflict
22
+ conditions :
23
+ - conflict
24
+ - or :
25
+ - -draft # Don't report conflicts on regular draft.
26
+ actions :
27
+ comment :
28
+ message : This pull request has merge conflicts. Could you please resolve them @{{author}}? 🙏
29
+
30
+ - name : Add to merge queue
31
+ conditions :
32
+ - label=add-to-queue
33
+ - base=master
34
+ actions :
35
+ queue :
36
+
37
+ - name : Approve trivial maintainer PRs
38
+ conditions :
39
+ - base=master
40
+ - label=trivial
41
+ - author=@sigp/lighthouse
42
+ actions :
43
+ review :
44
+ type : APPROVE
45
+
46
+ queue_rules :
47
+ - name : default
48
+ batch_size : 8
49
+ batch_max_wait_time : 60 s
50
+ checks_timeout : 10800 s
51
+
You can’t perform that action at this time.
0 commit comments