From dc704c5668589a10a641a72f90ceb8ca623fe752 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Tue, 7 Jul 2026 11:06:48 +0200 Subject: [PATCH] pull_request_template: improvements based on webhook Since the formality checks are now automated via the webhook, contributors no longer need to manually go through a checklist. The bot will flag any issues, request fixes, and apply a label indicating that requirements are not met. Once all issues are resolved, the label is automatically removed. This also benefits maintainers during review, as the previous manual checklist could be skipped or filled with inaccurate information. Remove the checklist items that are now automatically enforced and keep only the ones that are not yet automated and still make sense to have. Signed-off-by: Josef Schlehofer --- .github/pull_request_template.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a021dc72bc..0be98515ae 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -58,9 +58,5 @@ MAY: ## Checklist -- [ ] This PR is not from my *main* or *master* branch :poop:, but a *separate* branch. :white_check_mark: -- [ ] Each commit has a valid :black_nib: `Signed-off-by: ` row (via `git commit --signoff`). -- [ ] Each commit and PR title has a valid :memo: `: title` first line subject for packages. -- [ ] Incremented :up: any `PKG_VERSION` in the Makefile. -- [ ] _(Optional)_ Includes what Issue it closes (e.g. openwrt/luci#issue-number). -- [ ] _(Optional)_ Includes what it depends on (e.g. openwrt/packages#pr-number in sister repo). +- [ ] _(Nice to have)_ Includes what Issue it closes (e.g. openwrt/luci#issue-number). +- [ ] _(Nice to have)_ Includes what it depends on (e.g. openwrt/packages#pr-number in sister repo).