From b8fa116e0f1bccc005095a35264b64f5ac46116f Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 23 Feb 2026 17:53:57 +0100 Subject: [PATCH 1/4] chore(repo): add version pr template - the version PR template is the template used for new version releases, which are primarily PRs from next to v5.x --- .github/PULL_REQUEST_TEMPLATE/version.md | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/version.md diff --git a/.github/PULL_REQUEST_TEMPLATE/version.md b/.github/PULL_REQUEST_TEMPLATE/version.md new file mode 100644 index 000000000..851c82e9c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/version.md @@ -0,0 +1,41 @@ + + +## Breaking Changes + +- + +## Security + +- + +## Added + +- + +## Changed + +- + +## Deprecated + +- + +## Fixed + +- + +## Removed + +- + +## Refactored + +- + +## Maintenance + +- + +## Issues + +- Fixes From 8031ac6f1a7909ab4b59a4dd5d7f25d1b353eb6e Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 23 Feb 2026 17:56:39 +0100 Subject: [PATCH 2/4] chore(repo): add default pr template - the default (changes) PR template should be used for all PRs that are not new version release PRs --- .github/PULL_REQUEST_TEMPLATE/default.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/default.md diff --git a/.github/PULL_REQUEST_TEMPLATE/default.md b/.github/PULL_REQUEST_TEMPLATE/default.md new file mode 100644 index 000000000..049e48627 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/default.md @@ -0,0 +1,9 @@ + + +## Changes + +- + +## Issues + +- Fixes From 131e5efb0d184ff5e3d429904c8b70adfb5388e5 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 23 Feb 2026 19:12:44 +0100 Subject: [PATCH 3/4] chore(repo): improve contributor pr template - all contributors (none team members) must use this PR template to open PRs and it is also the default template selected in the GitHub UI --- .github/pull_request_template.md | 48 ++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b3b5a7de2..a2ead72ac 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,7 +1,51 @@ + + ## Changes + + - -## Issues & Discussions +## Issues -- fix # + + +- Fixes + +## Category + +- [ ] Bug fix +- [ ] Improvement +- [ ] New feature +- [ ] Adding new one click service +- [ ] Fixing or updating existing one click service + +## Preview + + + +## AI Assistance + + + +- [ ] AI was NOT used to create this PR +- [ ] AI was used (please describe below) + +**If AI was used:** + +- Tools used: +- How extensively: + +## Testing + + + +## Contributor Agreement + + + +> [!IMPORTANT] +> +> - [ ] I have read and understood the [contributor guidelines](https://github.com/coollabsio/coolify/blob/v5.x/CONTRIBUTING.md). If I have failed to follow any guideline, I understand that this PR may be closed without review. +> - [ ] I have searched [existing issues](https://github.com/coollabsio/coolify/issues) and [pull requests](https://github.com/coollabsio/coolify/pulls) (including closed ones) to ensure this isn't a duplicate. +> - [ ] I have tested all the changes thoroughly with a local development instance of Coolify and I am confident that they will work as expected when a maintainer tests them. From 9e81f00b47e8d3cc3f2567c597d5ca3b48d91c18 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 23 Feb 2026 19:32:36 +0100 Subject: [PATCH 4/4] docs: add pr templates changes to changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c20c92ff4..aaeaaa56f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -95,7 +95,8 @@ All notable changes to this project will be documented in this file. - Rename all GitHub Action workflows for improved clarity - Cancel in-progress action runs when a new run is triggered - Improve `SECURITY.md` formatting and wording and add the support policy for `v5.x` - - Refactor the GitHub issue templates to use issue types and improve formatting and wording + - Add 3 PR templates: `version.md` for release PRs, `default.md` for non-version PRs and a contributor template as the default for external PRs + - Improve the GitHub issue templates to use issue types and improve formatting and wording - Move `README.md` assets into `.github/assets/` to more easily exclude them from the core repository code - Remove the `chore-remove-labels-and-assignees-on-close.yml` workflow as labels and assignees are now kept when closing issues and PRs