Update config.go [CI SKIP]
This commit is contained in:
Родитель
7de05611de
Коммит
9cc16ed614
|
@ -7,9 +7,10 @@ import (
|
|||
)
|
||||
|
||||
type Config struct {
|
||||
Approvals int `json:"approvals" toml:"approvals"`
|
||||
Pattern string `json:"pattern" toml:"pattern"`
|
||||
SelfApprovalOff bool `json:"self_approval_off" toml:"self_approval_off"`
|
||||
Approvals int `json:"approvals" toml:"approvals"`
|
||||
Pattern string `json:"pattern" toml:"pattern"`
|
||||
Team string `json:"team" toml:"team"`
|
||||
SelfApprovalOff bool `json:"self_approval_off" toml:"self_approval_off"`
|
||||
|
||||
re *regexp.Regexp
|
||||
}
|
||||
|
@ -32,6 +33,9 @@ func ParseConfigStr(data string) (*Config, error) {
|
|||
if len(c.Pattern) == 0 {
|
||||
c.Pattern = "(?i)LGTM"
|
||||
}
|
||||
if len(c.Team) == 0 {
|
||||
c.Team = "MAINTAINERS"
|
||||
}
|
||||
c.re, err = regexp.Compile(c.Pattern)
|
||||
return c, err
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче