From 9bba87bfb2915674defe811a9cdf83cada3da881 Mon Sep 17 00:00:00 2001 From: Alexander Dines Date: Tue, 4 Nov 2025 14:16:03 -0800 Subject: [PATCH 1/4] cp dines --- .github/pull_request_template.md | 22 ++++++++++++++++++++++ 1 file changed, 22 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 000000000..81094afc9 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) + +**Format:** `[optional scope]: ` + +Examples: `feat: add new endpoint` · `fix(auth): resolve token issue` · `feat!: breaking change` + +--- + +## Description + + + +## Changes + +- +- + +## Checklist + +- [ ] PR title follows Conventional Commits format +- [ ] Smoke Tests added/updated + From 3837d78b8dcc39fd8554dbe3198b11c7b0cf9461 Mon Sep 17 00:00:00 2001 From: Alexander Dines Date: Tue, 4 Nov 2025 14:21:58 -0800 Subject: [PATCH 2/4] cp dines --- .github/PULL_REQUEST_TEMPLATE/bug_fix.md | 35 +++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE/feature.md | 40 ++++++++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/bug_fix.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/feature.md diff --git a/.github/PULL_REQUEST_TEMPLATE/bug_fix.md b/.github/PULL_REQUEST_TEMPLATE/bug_fix.md new file mode 100644 index 000000000..2c7a5239a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/bug_fix.md @@ -0,0 +1,35 @@ +## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) + +**Format:** `fix[optional scope]: ` + +Examples: `fix: resolve memory leak` · `fix(api): handle null response` · `fix(auth): correct token validation` + +--- + +## Description + + + +## Root Cause + + + +## Changes + +- +- + +## Testing + + + +- [ ] Added regression test +- [ ] Verified bug is fixed locally +- [ ] Smoke Tests added/updated + +## Checklist + +- [ ] PR title follows Conventional Commits format (`fix:` or `fix(scope):`) +- [ ] Root cause identified and documented +- [ ] Tests added to prevent regression + diff --git a/.github/PULL_REQUEST_TEMPLATE/feature.md b/.github/PULL_REQUEST_TEMPLATE/feature.md new file mode 100644 index 000000000..5dc91d088 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/feature.md @@ -0,0 +1,40 @@ +## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) + +**Format:** `feat[optional scope]: ` + +Examples: `feat: add new SDK method` · `feat(storage): support file uploads` · `feat!: breaking API change` + +--- + +## Description + + + +## Motivation + + + +## Changes + +- +- + +## Testing + + + +- [ ] Unit tests added +- [ ] Integration tests added +- [ ] Smoke Tests added/updated +- [ ] Tested locally + +## Breaking Changes + + + +## Checklist + +- [ ] PR title follows Conventional Commits format (`feat:` or `feat(scope):`) +- [ ] Documentation updated (if needed) +- [ ] Breaking changes documented (if applicable) + From c59a8855895e495760102354f166ed836344d7d5 Mon Sep 17 00:00:00 2001 From: Alexander Dines Date: Tue, 4 Nov 2025 14:22:21 -0800 Subject: [PATCH 3/4] cp dines --- .github/pull_request_template.md | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 81094afc9..000000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,22 +0,0 @@ -## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) - -**Format:** `[optional scope]: ` - -Examples: `feat: add new endpoint` · `fix(auth): resolve token issue` · `feat!: breaking change` - ---- - -## Description - - - -## Changes - -- -- - -## Checklist - -- [ ] PR title follows Conventional Commits format -- [ ] Smoke Tests added/updated - From b0132994c0b1d4185c6a3cd0caab07a94fa2b5b3 Mon Sep 17 00:00:00 2001 From: Alexander Dines Date: Tue, 4 Nov 2025 14:24:27 -0800 Subject: [PATCH 4/4] cp dines --- .github/pull_request_template.md | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 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 000000000..5dc91d088 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,40 @@ +## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) + +**Format:** `feat[optional scope]: ` + +Examples: `feat: add new SDK method` · `feat(storage): support file uploads` · `feat!: breaking API change` + +--- + +## Description + + + +## Motivation + + + +## Changes + +- +- + +## Testing + + + +- [ ] Unit tests added +- [ ] Integration tests added +- [ ] Smoke Tests added/updated +- [ ] Tested locally + +## Breaking Changes + + + +## Checklist + +- [ ] PR title follows Conventional Commits format (`feat:` or `feat(scope):`) +- [ ] Documentation updated (if needed) +- [ ] Breaking changes documented (if applicable) +