mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-14 22:16:14 +01:00
412a9dbc15
(cherry picked from commit52b364ddbd
) (cherry picked from commit99887cd567
) (cherry picked from commitcd5788782a
) Conflicts: docs/content/doc/advanced/config-cheat-sheet.en-us.md (cherry picked from commitf33e7c8f5a
) (cherry picked from commitdc892c2e80
) (cherry picked from commit60f53af40c
) (cherry picked from commitdbf7401fe8
) (cherry picked from commitd89cf82796
) (cherry picked from commitd0b3dfd423
)
29 lines
676 B
Go
29 lines
676 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package setting
|
|
|
|
import (
|
|
"code.gitea.io/gitea/modules/log"
|
|
)
|
|
|
|
// Actions settings
|
|
var (
|
|
Actions = struct {
|
|
Storage // how the created logs should be stored
|
|
Enabled bool
|
|
DefaultActionsURL string `ini:"DEFAULT_ACTIONS_URL"`
|
|
}{
|
|
Enabled: false,
|
|
DefaultActionsURL: "https://codeberg.org",
|
|
}
|
|
)
|
|
|
|
func loadActionsFrom(rootCfg ConfigProvider) {
|
|
sec := rootCfg.Section("actions")
|
|
if err := sec.MapTo(&Actions); err != nil {
|
|
log.Fatal("Failed to map Actions settings: %v", err)
|
|
}
|
|
|
|
Actions.Storage = getStorage(rootCfg, "actions_log", "", nil)
|
|
}
|