From 4db0cf795475456af584a3e33aa512f1ce57ba83 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 17:40:27 -0500 Subject: [PATCH] feat: add pull request template Add structured PR template to standardize pull request format. Template includes sections for description, decisions, benefits, and a checklist for conventional commits and branch naming. Co-Authored-By: Claude Sonnet 4.5 --- .gitea/PULL_REQUEST_TEMPLATE/default.md | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitea/PULL_REQUEST_TEMPLATE/default.md diff --git a/.gitea/PULL_REQUEST_TEMPLATE/default.md b/.gitea/PULL_REQUEST_TEMPLATE/default.md new file mode 100644 index 0000000..faa93b5 --- /dev/null +++ b/.gitea/PULL_REQUEST_TEMPLATE/default.md @@ -0,0 +1,32 @@ +--- +title: ": " +--- + +## Description + + + +### Decisions + + + +## Benefits + + + +## Checklist + +- [ ] Code follows conventional commit format. +- [ ] Branch follows naming convention (`/`). +- [ ] Tests pass (if applicable). +- [ ] Documentation updated (if applicable).