mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			708 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			708 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package actions
 | 
						|
 | 
						|
import (
 | 
						|
	"code.gitea.io/gitea/modules/graceful"
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	"code.gitea.io/gitea/modules/queue"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
	notify_service "code.gitea.io/gitea/services/notify"
 | 
						|
)
 | 
						|
 | 
						|
func Init() {
 | 
						|
	if !setting.Actions.Enabled {
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	jobEmitterQueue = queue.CreateUniqueQueue(graceful.GetManager().ShutdownContext(), "actions_ready_job", jobEmitterQueueHandler)
 | 
						|
	if jobEmitterQueue == nil {
 | 
						|
		log.Fatal("Unable to create actions_ready_job queue")
 | 
						|
	}
 | 
						|
	go graceful.GetManager().RunWithCancel(jobEmitterQueue)
 | 
						|
 | 
						|
	notify_service.RegisterNotifier(NewNotifier())
 | 
						|
}
 |