1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-27 04:38:36 +00:00

Use a new name for bots

This commit is contained in:
Lunny Xiao
2022-11-22 16:04:10 +08:00
committed by Jason Song
parent 45afa0ee9f
commit 52b32c37ad

View File

@@ -36,19 +36,22 @@ func NewReplaceUser(name string) *User {
}
}
const BotUserID = -2
const (
BotUserID = -2
BotUserName = "[robot]gitea-bots"
)
// NewBotUser creates and returns a fake user for running the build.
func NewBotUser() *User {
return &User{
ID: BotUserID,
Name: "gitea-bots",
LowerName: "gitea-bots",
Name: "[robot]gitea-bots",
LowerName: "[robot]gitea-bots",
IsActive: true,
FullName: "Gitea Bots",
Email: "teabot@gitea.io",
KeepEmailPrivate: true,
LoginName: "gitea-bots",
LoginName: "[robot]gitea-bots",
Type: UserTypeIndividual,
AllowCreateOrganization: true,
Visibility: structs.VisibleTypePublic,
@@ -59,5 +62,5 @@ func (u *User) IsBots() bool {
if u == nil {
return false
}
return u.ID == BotUserID && u.Name == "gitea-bots"
return u.ID == BotUserID && u.Name == BotUserName
}