mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-25 11:22:16 +00:00
Merge branch 'rebase-forgejo-branding' into wip-forgejo
This commit is contained in:
commit
d7e1854884
138 changed files with 1367 additions and 332 deletions
|
@ -602,7 +602,7 @@ func EnsureUpToDate(x *xorm.Engine) error {
|
|||
expected := ExpectedVersion()
|
||||
|
||||
if currentDB != expected {
|
||||
return fmt.Errorf(`Current database version %d is not equal to the expected version %d. Please run "gitea [--config /path/to/app.ini] migrate" to update the database version`, currentDB, expected)
|
||||
return fmt.Errorf(`Current database version %d is not equal to the expected version %d. Please run "forgejo [--config /path/to/app.ini] migrate" to update the database version`, currentDB, expected)
|
||||
}
|
||||
|
||||
return forgejo_migrations.EnsureUpToDate(x)
|
||||
|
|
|
@ -560,6 +560,7 @@ var (
|
|||
"user",
|
||||
"v2",
|
||||
"gitea-actions",
|
||||
"forgejo-actions",
|
||||
}
|
||||
|
||||
// DON'T ADD ANY NEW STUFF, WE SOLVE THIS WITH `/user/{obj}` PATHS!
|
||||
|
|
|
@ -43,9 +43,9 @@ func NewReplaceUser(name string) *User {
|
|||
|
||||
const (
|
||||
ActionsUserID = -2
|
||||
ActionsUserName = "gitea-actions"
|
||||
ActionsFullName = "Gitea Actions"
|
||||
ActionsEmail = "teabot@gitea.io"
|
||||
ActionsUserName = "forgejo-actions"
|
||||
ActionsFullName = "Forgejo Actions"
|
||||
ActionsEmail = "noreply@forgejo.org"
|
||||
)
|
||||
|
||||
// NewActionsUser creates and returns a fake user for running the actions.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue