diff options
Diffstat (limited to 'git-codereview/mail.go')
| -rw-r--r-- | git-codereview/mail.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-codereview/mail.go b/git-codereview/mail.go index 4bcd85c..7fe2bcf 100644 --- a/git-codereview/mail.go +++ b/git-codereview/mail.go @@ -50,9 +50,9 @@ func cmdMail(args []string) { var trybotVotes []string switch os.Getenv("GIT_CODEREVIEW_TRYBOT") { - case "luci": + case "", "luci": trybotVotes = []string{"Commit-Queue+1"} - case "", "farmer": + case "farmer": trybotVotes = []string{"Run-TryBot"} case "both": trybotVotes = []string{"Commit-Queue+1", "Run-TryBot"} |
