From b6e487550d14af054799ba33acc088bdbb06b330 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 6 Jul 2025 17:44:13 -0600 Subject: [PATCH] Add pull request template for consistent PR submissions - Introduced a new pull request template to guide contributors in providing necessary information and ensuring best practices are followed before submission. - Included a checklist for testing and issue linking to streamline the review process. --- .github/pull_request_template.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..0c5e03d5 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,17 @@ +## What is this PR about? + +New PR of [Template Name] + +## Checklist + +Before submitting this PR, please make sure that: + +- [ ] I have read the suggestions in the README.md file https://github.com/Dokploy/templates?tab=readme-ov-file#general-suggestions-when-creating-a-template +- [ ] I have tested the template in my instance, so the maintainers don't spend time trying to figure out what's wrong. +- [ ] I have added tests that demonstrate that my correction works or that my new feature works. + +## Issues related (if applicable) + +Close automatically the related issues using the keywords: `closes #ISSUE_NUMBER`, `fixes #ISSUE_NUMBER`, `resolves #ISSUE_NUMBER` + +Example: `closes #123` \ No newline at end of file