Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #77 from edouard-lopez/allow-lowercase-pull-reques…
Browse files Browse the repository at this point in the history
…t-template-filename

lookup for lowercase filename for PR template
  • Loading branch information
mergify[bot] authored Sep 5, 2019
2 parents 556ffdd + 424d730 commit e6f934b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions git_pull_request/__init__.py
Original file line number Diff line number Diff line change
@@ -386,6 +386,9 @@ def find_pull_request_template():
filename,
os.path.join(".github", filename),
os.path.join("docs", filename),
filename.lower(),
os.path.join(".github", filename.lower()),
os.path.join("docs", filename.lower()),
]
for path in pr_template_paths:
templates = glob.glob(path)

0 comments on commit e6f934b

Please sign in to comment.