From 489b028ddbbfbe731af0ed6efc627f36eda9ac9d Mon Sep 17 00:00:00 2001 From: David Allen <16520934+davidallendj@users.noreply.github.com> Date: Thu, 23 Jul 2026 11:15:45 -0600 Subject: [PATCH 1/2] Update pull request template with documentation checklist Added a checklist item for updating relevant documentation. Signed-off-by: David Allen --- pull_request_template.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pull_request_template.md b/pull_request_template.md index 72759b9..f7d403e 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -7,7 +7,8 @@ Thank you for your contribution! Please ensure the following before submitting: - [ ] My code follows the style guidelines of this project - [ ] I have added/updated comments where needed - [ ] I have added tests that prove my fix is effective or my feature works -- [ ] I have run `make test` (or equivalent) locally and all tests pass +- [ ] I have run `make test` (or equivalent) locally and all tests pass +- [ ] I have updated the relevant documentation (CLI examples, man pages, README, other docs, etc.) - [ ] **DCO Sign-off**: All commits are signed off (`git commit -s`) with my real name and email - [ ] **REUSE Compliance**: - [ ] Each new/modified source file has SPDX copyright and license headers From 6e67d1c87a5ad87649b0017ffaca48f7dc0ee117 Mon Sep 17 00:00:00 2001 From: David Allen Date: Thu, 23 Jul 2026 11:31:07 -0600 Subject: [PATCH 2/2] Added 'dependency update' type of change Signed-off-by: David Allen --- pull_request_template.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pull_request_template.md b/pull_request_template.md index f7d403e..0ead990 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -28,6 +28,7 @@ Fixes #(issue) - [ ] New feature - [ ] Breaking change - [ ] Documentation update +- [ ] Dependency update ---