mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			554 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			554 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
 | 
						|
		Enabled           bool
 | 
						|
		DefaultActionsURL string
 | 
						|
	}{
 | 
						|
		Enabled:           false,
 | 
						|
		DefaultActionsURL: "https://gitea.com",
 | 
						|
	}
 | 
						|
)
 | 
						|
 | 
						|
func newActions() {
 | 
						|
	sec := Cfg.Section("actions")
 | 
						|
	if err := sec.MapTo(&Actions); err != nil {
 | 
						|
		log.Fatal("Failed to map Actions settings: %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	Actions.Storage = getStorage("actions_log", "", nil)
 | 
						|
}
 |