Austin York
Austin York

Reputation: 838

Best way to share Github pull request templates between projects?

Github recently announced the addition of pull request templates. This is an awesome feature that has been heavily requested in the community for some time.

These templates are added by including a special file named PULL_REQUEST_TEMPLATE.md to the root of the project or within the .github directory. I have multiple projects for which I would like to use the same template. What is the best way to keep these templates in sync across projects?

(Git submodules are the only thing I can think of, but that seems pretty heavy-handed and complexity-prone for such a simple use case).

Upvotes: 8

Views: 1753

Answers (1)

cema-sp
cema-sp

Reputation: 382

Another tricky way might be creating a new organization and configuring organization-wide templates.

Upvotes: 2

Related Questions