diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-05-10 20:42:22 -0400 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2018-05-11 08:42:22 +0800 |
commit | 87ebaa97eeaa085ac8dcb05dc860b4bdeae573d9 (patch) | |
tree | cbf284c92fa7b96c33e0aaa11c475c7336e9918f /docs | |
parent | 6be7387ffbe7f684a364b017b84744b575285866 (diff) | |
download | gitea-87ebaa97eeaa085ac8dcb05dc860b4bdeae573d9.tar.gz gitea-87ebaa97eeaa085ac8dcb05dc860b4bdeae573d9.zip |
Add documentation in regards to issues/pull request templates (#3942)
* Add documentation in regards to issues/pull request templates
Fixes #3491
* update per suggestion to use list
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/usage/issue-pull-request-templates.en-us.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/docs/content/doc/usage/issue-pull-request-templates.en-us.md b/docs/content/doc/usage/issue-pull-request-templates.en-us.md new file mode 100644 index 0000000000..5eaf0db0c7 --- /dev/null +++ b/docs/content/doc/usage/issue-pull-request-templates.en-us.md @@ -0,0 +1,41 @@ +--- +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 + +For some projects there are a standard list of questions that users need to be asked +for creating an issue, or adding a 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 clarifiying 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 |