From ea26605cc62a51aa8b65321ad38058866fdeed54 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Sun, 7 Jul 2024 21:04:27 +0200 Subject: [PATCH] Make GitHub PR template part of the minimum options The GitHub PR template is a non-intrusive addition. It makes the description of a PR better and does not take much more time to use it. The benefits are large enough to justify always having it. Closes #308 --- CHANGELOG.md | 4 ++++ copier.yml | 2 +- ...ATE.md{% endif %}.jinja => PULL_REQUEST_TEMPLATE.md.jinja} | 0 3 files changed, 5 insertions(+), 1 deletion(-) rename template/.github/{{% if AddGitHubTemplates %}PULL_REQUEST_TEMPLATE.md{% endif %}.jinja => PULL_REQUEST_TEMPLATE.md.jinja} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a6c089..574321e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] +### Changed + +- GitHub PR template is now part of the minimal options (#308) + ## [0.7.2] - 2024-07-07 ### Added diff --git a/copier.yml b/copier.yml index 19b0c137..0559b984 100644 --- a/copier.yml +++ b/copier.yml @@ -117,7 +117,7 @@ AddGitHubTemplates: when: "{{ AnswerStrategy == 'ask' }}" type: bool default: "{{ AnswerStrategy != 'minimum' }}" - help: GitHub issue and PR templates (Add forms for issue creation and information on Pull Requests to improve the description quality) + help: GitHub issue templates (Add forms for issue creation to improve the description quality) _skip_if_exists: - "**/*.jl" diff --git a/template/.github/{% if AddGitHubTemplates %}PULL_REQUEST_TEMPLATE.md{% endif %}.jinja b/template/.github/PULL_REQUEST_TEMPLATE.md.jinja similarity index 100% rename from template/.github/{% if AddGitHubTemplates %}PULL_REQUEST_TEMPLATE.md{% endif %}.jinja rename to template/.github/PULL_REQUEST_TEMPLATE.md.jinja