We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 467202d commit dc3ff9fCopy full SHA for dc3ff9f
routers/repo/issue.go
@@ -50,8 +50,11 @@ var (
50
// IssueTemplateCandidates issue templates
51
IssueTemplateCandidates = []string{
52
"ISSUE_TEMPLATE.md",
53
- ".gogs/ISSUE_TEMPLATE.md",
+ "issue_template.md",
54
+ ".gitea/ISSUE_TEMPLATE.md",
55
+ ".gitea/issue_template.md",
56
".github/ISSUE_TEMPLATE.md",
57
+ ".github/issue_template.md",
58
}
59
)
60
routers/repo/pull.go
@@ -31,9 +31,12 @@ const (
31
32
var (
33
pullRequestTemplateCandidates = []string{
34
- "PULL_REQUEST.md",
35
- ".gogs/PULL_REQUEST.md",
36
- ".github/PULL_REQUEST.md",
+ "PULL_REQUEST_TEMPLATE.md",
+ "pull_request_template.md",
+ ".gitea/PULL_REQUEST_TEMPLATE.md",
37
+ ".gitea/pull_request_template.md",
38
+ ".github/PULL_REQUEST_TEMPLATE.md",
39
+ ".github/pull_request_template.md",
40
41
42
0 commit comments