From d831312dc34bd49d207be11c64e5d709faeb5235 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 23:00:32 +0000 Subject: [PATCH] feat: complete PR template frontmatter fields (#8) ## Description Adds all recommended frontmatter fields to the Gitea pull request template. This includes `about`, `ref`, `assignees`, and `labels` fields in addition to the required `name` and `title` fields. These fields provide better template documentation and default PR settings. ## Benefits - The PR template now includes a description (`about`) explaining its purpose. - Default target branch is explicitly set to `main` via the `ref` field. - Template follows Gitea best practices with all available frontmatter fields. - Provides a complete, well-documented template structure for contributors. ## Checklist - [x] Code follows conventional commit format. - [x] Branch follows naming convention (`/`). - [x] Tests pass (if applicable). - [x] Documentation updated (if applicable). Reviewed-on: https://git.maximhutz.com/mvhutz/lambda/pulls/8 Co-authored-by: M.V. Hutz Co-committed-by: M.V. Hutz --- .gitea/PULL_REQUEST_TEMPLATE.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/PULL_REQUEST_TEMPLATE.md b/.gitea/PULL_REQUEST_TEMPLATE.md index 642e338..1daef70 100644 --- a/.gitea/PULL_REQUEST_TEMPLATE.md +++ b/.gitea/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,10 @@ --- name: "Default Template" +about: "The default template for `lambda`." title: ": " +ref: "main" +assignees: [] +labels: [] --- ## Description