File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 8
8
pull_request_rules :
9
9
- name : label scala-steward's PRs
10
10
conditions :
11
- - author=scala-steward
11
+ - or :
12
+ - author=scala-steward
13
+ - author=scala-steward-dev
12
14
actions :
13
15
label :
14
16
add :
15
17
- dependency-update
16
18
remove : []
17
19
- name : merge scala-steward's PRs
18
20
conditions :
19
- - author=scala-steward
21
+ - or :
22
+ - author=scala-steward
23
+ - author=scala-steward-dev
20
24
- status-success=Build and Test (ubuntu-latest, 2.13, temurin@17)
21
25
- status-success=Build and Test (ubuntu-latest, 2.13, temurin@11)
22
26
actions :
Original file line number Diff line number Diff line change @@ -63,7 +63,12 @@ ThisBuild / githubWorkflowBuild :=
63
63
)
64
64
65
65
ThisBuild / mergifyPrRules := {
66
- val authorCondition = MergifyCondition .Custom (" author=scala-steward" )
66
+ val authorCondition = MergifyCondition .Or (
67
+ List (
68
+ MergifyCondition .Custom (" author=scala-steward" ),
69
+ MergifyCondition .Custom (" author=scala-steward-dev" )
70
+ )
71
+ )
67
72
Seq (
68
73
MergifyPrRule (
69
74
" label scala-steward's PRs" ,
You can’t perform that action at this time.
0 commit comments