mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	 4c00b8b571
			
		
	
	4c00b8b571
	
	
	
		
			
			Fix #772 Reviewed-on: https://gitea.com/gitea/tea/pulls/786 Reviewed-by: Bo-Yi Wu (吳柏毅) <appleboy.tw@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			717 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			717 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package task
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"code.gitea.io/sdk/gitea"
 | |
| 	"code.gitea.io/tea/modules/config"
 | |
| 	"code.gitea.io/tea/modules/print"
 | |
| )
 | |
| 
 | |
| // CreateIssue creates an issue in the given repo and prints the result
 | |
| func CreateIssue(login *config.Login, repoOwner, repoName string, opts gitea.CreateIssueOption) error {
 | |
| 	// title is required
 | |
| 	if len(opts.Title) == 0 {
 | |
| 		return fmt.Errorf("Title is required")
 | |
| 	}
 | |
| 
 | |
| 	issue, _, err := login.Client().CreateIssue(repoOwner, repoName, opts)
 | |
| 	if err != nil {
 | |
| 		return fmt.Errorf("could not create issue: %s", err)
 | |
| 	}
 | |
| 
 | |
| 	print.IssueDetails(issue, nil)
 | |
| 
 | |
| 	fmt.Println(issue.HTMLURL)
 | |
| 
 | |
| 	return nil
 | |
| }
 |