summaryrefslogtreecommitdiffstats
path: root/routers/repo/pull.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/pull.go')
-rw-r--r--routers/repo/pull.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/routers/repo/pull.go b/routers/repo/pull.go
index 583f3b0a35..56a6a79f61 100644
--- a/routers/repo/pull.go
+++ b/routers/repo/pull.go
@@ -31,9 +31,12 @@ const (
var (
pullRequestTemplateCandidates = []string{
- "PULL_REQUEST.md",
- ".gogs/PULL_REQUEST.md",
- ".github/PULL_REQUEST.md",
+ "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",
}
)