Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/bug_fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary)

**Format:** `fix[optional scope]: <description>`

Examples: `fix: resolve memory leak` · `fix(api): handle null response` · `fix(auth): correct token validation`

---

## Description

<!-- What bug does this fix? -->

## Root Cause

<!-- What was causing the bug? -->

## Changes

-
-

## Testing

<!-- How did you verify the fix? -->

- [ ] 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

40 changes: 40 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary)

**Format:** `feat[optional scope]: <description>`

Examples: `feat: add new SDK method` · `feat(storage): support file uploads` · `feat!: breaking API change`

---

## Description

<!-- What new feature does this add? -->

## Motivation

<!-- Why is this feature needed? What problem does it solve? -->

## Changes

-
-

## Testing

<!-- How was this feature tested? -->

- [ ] Unit tests added
- [ ] Integration tests added
- [ ] Smoke Tests added/updated
- [ ] Tested locally

## Breaking Changes

<!-- If this is a breaking change (feat!), describe the impact and migration path -->

## Checklist

- [ ] PR title follows Conventional Commits format (`feat:` or `feat(scope):`)
- [ ] Documentation updated (if needed)
- [ ] Breaking changes documented (if applicable)

40 changes: 40 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
## ⚠️ PR Title Must Follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary)

**Format:** `feat[optional scope]: <description>`

Examples: `feat: add new SDK method` · `feat(storage): support file uploads` · `feat!: breaking API change`

---

## Description

<!-- What new feature does this add? -->

## Motivation

<!-- Why is this feature needed? What problem does it solve? -->

## Changes

-
-

## Testing

<!-- How was this feature tested? -->

- [ ] Unit tests added
- [ ] Integration tests added
- [ ] Smoke Tests added/updated
- [ ] Tested locally

## Breaking Changes

<!-- If this is a breaking change (feat!), describe the impact and migration path -->

## Checklist

- [ ] PR title follows Conventional Commits format (`feat:` or `feat(scope):`)
- [ ] Documentation updated (if needed)
- [ ] Breaking changes documented (if applicable)