mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	Add interactive mode for tea issue create (#302)
				
					
				
			Implement interactive issue creation Comment PromptRepoSlug Move PromptRepoSlug to the right place Hide promptRepoSlug Signed-off-by: Martin Reboredo <yakoyoku@gmail.com> Co-authored-by: Martin Reboredo <yakoyoku@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/302 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: khmarbaise <khmarbaise@noreply.gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Martin Reboredo <yakoyakoyokuyoku@noreply.gitea.io> Co-Committed-By: Martin Reboredo <yakoyakoyokuyoku@noreply.gitea.io>
This commit is contained in:
		
							
								
								
									
										45
									
								
								modules/task/issue_create.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								modules/task/issue_create.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,45 @@ | ||||
| // Copyright 2020 The Gitea Authors. All rights reserved. | ||||
| // Use of this source code is governed by a MIT-style | ||||
| // license that can be found in the LICENSE file. | ||||
|  | ||||
| package task | ||||
|  | ||||
| import ( | ||||
| 	"fmt" | ||||
| 	"log" | ||||
|  | ||||
| 	"code.gitea.io/sdk/gitea" | ||||
| 	"code.gitea.io/tea/modules/config" | ||||
| 	"code.gitea.io/tea/modules/print" | ||||
| ) | ||||
|  | ||||
| // CreateIssue creates a PR in the given repo and prints the result | ||||
| func CreateIssue(login *config.Login, repoOwner, repoName, title, description string) error { | ||||
|  | ||||
| 	// title is required | ||||
| 	if len(title) == 0 { | ||||
| 		return fmt.Errorf("Title is required") | ||||
| 	} | ||||
|  | ||||
| 	issue, _, err := login.Client().CreateIssue(repoOwner, repoName, gitea.CreateIssueOption{ | ||||
| 		Title: title, | ||||
| 		Body:  description, | ||||
| 		// TODO: | ||||
| 		//Assignee  string   `json:"assignee"` | ||||
| 		//Assignees []string `json:"assignees"` | ||||
| 		//Deadline *time.Time `json:"due_date"` | ||||
| 		//Milestone int64 `json:"milestone"` | ||||
| 		//Labels []int64 `json:"labels"` | ||||
| 		//Closed bool    `json:"closed"` | ||||
| 	}) | ||||
|  | ||||
| 	if err != nil { | ||||
| 		log.Fatalf("could not create issue: %s", err) | ||||
| 	} | ||||
|  | ||||
| 	print.IssueDetails(issue) | ||||
|  | ||||
| 	fmt.Println(issue.HTMLURL) | ||||
|  | ||||
| 	return err | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Martin Reboredo
					Martin Reboredo