File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,29 @@ configuration:
10
10
11
11
eventResponderTasks :
12
12
13
+ - description : Auto-approve/merge automated merge PRs
14
+ triggerOnOwnActions : false
15
+ if :
16
+ - payloadType : Pull_Request
17
+ - isPullRequest
18
+ - isActivitySender :
19
+ user : github-actions[bot]
20
+ issueAuthor : False
21
+ - or :
22
+ - titleContains :
23
+ pattern : " [automated] Merge branch"
24
+ isRegex : False
25
+ - titleContains :
26
+ pattern : " [automated] Update main version"
27
+ isRegex : False
28
+ - isAction :
29
+ action : Opened
30
+ then :
31
+ - approvePullRequest :
32
+ comment : Auto-approve
33
+ - enableAutoMerge :
34
+ mergeMethod : merge
35
+
13
36
- description : Add "untriaged" label to issues when opened
14
37
triggerOnOwnActions : false
15
38
if :
Original file line number Diff line number Diff line change 31
31
with :
32
32
token : ${{ secrets.GITHUB_TOKEN }}
33
33
commit-message : Update main version
34
- title : ' Update main version'
34
+ title : ' [automated] Update main version'
35
35
branch : merge/update-main-version
You can’t perform that action at this time.
0 commit comments