mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	* Issue templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add some comments, appease the linter Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add docs and re-use dir candidates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add default labels to issue templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Generate swagger Signed-off-by: jolheiser <john.olheiser@gmail.com> * Suggested changes Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update issue.go * Suggestions Signed-off-by: jolheiser <john.olheiser@gmail.com> * Extract metadata from legacy if possible Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
date: "2018-05-10T16:00:00+02:00"
 | 
						|
title: "Usage: Issue and Pull Request templates"
 | 
						|
slug: "issue-pull-request-templates"
 | 
						|
weight: 15
 | 
						|
toc: true
 | 
						|
draft: false
 | 
						|
menu:
 | 
						|
  sidebar:
 | 
						|
    parent: "usage"
 | 
						|
    name: "Issue and Pull Request templates"
 | 
						|
    weight: 15
 | 
						|
    identifier: "issue-pull-request-templates"
 | 
						|
---
 | 
						|
 | 
						|
# Issue and Pull Request Templates
 | 
						|
 | 
						|
Some projects have a standard list of questions that users need to answer
 | 
						|
when creating an issue or pull request. Gitea supports adding templates to the
 | 
						|
main branch of the repository so that they can autopopulate the form when users are 
 | 
						|
creating issues and pull requests. This will cut down on the initial back and forth
 | 
						|
of getting some clarifying details.
 | 
						|
 | 
						|
Possible file names for issue templates:
 | 
						|
 | 
						|
* ISSUE_TEMPLATE.md
 | 
						|
* issue_template.md
 | 
						|
* .gitea/ISSUE_TEMPLATE.md
 | 
						|
* .gitea/issue_template.md
 | 
						|
* .github/ISSUE_TEMPLATE.md
 | 
						|
* .github/issue_template.md
 | 
						|
 | 
						|
 | 
						|
Possible file names for PR templates:
 | 
						|
 | 
						|
* PULL_REQUEST_TEMPLATE.md
 | 
						|
* pull_request_template.md
 | 
						|
* .gitea/PULL_REQUEST_TEMPLATE.md
 | 
						|
* .gitea/pull_request_template.md
 | 
						|
* .github/PULL_REQUEST_TEMPLATE.md
 | 
						|
* .github/pull_request_template.md
 | 
						|
 | 
						|
 | 
						|
Additionally, the New Issue page URL can be suffixed with `?title=Issue+Title&body=Issue+Text` and the form will be populated with those strings. Those strings will be used instead of the template if there is one.
 | 
						|
 | 
						|
# Issue Template Directory
 | 
						|
 | 
						|
Alternatively, users can create multiple issue templates inside a special directory and allow users to choose one that more specifically 
 | 
						|
addresses their problem.
 | 
						|
 | 
						|
Possible directory names for issue templates:
 | 
						|
 | 
						|
* ISSUE_TEMPLATE
 | 
						|
* issue_template
 | 
						|
* .gitea/ISSUE_TEMPLATE
 | 
						|
* .gitea/issue_template
 | 
						|
* .github/ISSUE_TEMPLATE
 | 
						|
* .github/issue_template
 | 
						|
* .gitlab/ISSUE_TEMPLATE
 | 
						|
* .gitlab/issue_template
 | 
						|
 | 
						|
Inside the directory can be multiple issue templates with the form
 | 
						|
 | 
						|
```markdown
 | 
						|
-----
 | 
						|
name: "Template Name"
 | 
						|
about: "This template is for testing!"
 | 
						|
title: "[TEST] "
 | 
						|
labels:
 | 
						|
  - bug
 | 
						|
  - "help needed"
 | 
						|
-----
 | 
						|
This is the template!
 | 
						|
```
 | 
						|
 | 
						|
In the above example, when a user is presented with the list of issues they can submit, this would show as `Template Name` with the description
 | 
						|
`This template is for testing!`. When submitting an issue with the above example, the issue title would be pre-populated with 
 | 
						|
`[TEST] ` while the issue body would be pre-populated with `This is the template!`. The issue would also be assigned two labels,
 | 
						|
`bug` and `help needed`.
 |