mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			694 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			694 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package private
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| )
 | |
| 
 | |
| type ActionsRunnerRegisterRequest struct {
 | |
| 	Token   string
 | |
| 	Scope   string
 | |
| 	Labels  []string
 | |
| 	Name    string
 | |
| 	Version string
 | |
| }
 | |
| 
 | |
| func ActionsRunnerRegister(ctx context.Context, token, scope string, labels []string, name, version string) (string, ResponseExtra) {
 | |
| 	reqURL := setting.LocalURL + "api/internal/actions/register"
 | |
| 
 | |
| 	req := newInternalRequest(ctx, reqURL, "POST", ActionsRunnerRegisterRequest{
 | |
| 		Token:   token,
 | |
| 		Scope:   scope,
 | |
| 		Labels:  labels,
 | |
| 		Name:    name,
 | |
| 		Version: version,
 | |
| 	})
 | |
| 
 | |
| 	resp, extra := requestJSONResp(req, &responseText{})
 | |
| 	return resp.Text, extra
 | |
| }
 |