summaryrefslogtreecommitdiffhomepage
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2026-01-08 14:12:26 -0600
committerAiden Cline <[email protected]>2026-01-08 14:12:38 -0600
commitc74bc323b68493f6e94839903f13489974319edc (patch)
treea1ee897b1855adcf7940ab9107f6eb8748cc9ff1 /CONTRIBUTING.md
parentc7b825a42a20af85ef8d5cf52606791ceb573c2c (diff)
downloadopencode-c74bc323b68493f6e94839903f13489974319edc.tar.gz
opencode-c74bc323b68493f6e94839903f13489974319edc.zip
ci: tweak enforcement of titles
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 075d9d351..0385f042a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -192,11 +192,19 @@ PR titles should follow conventional commit standards:
- `refactor:` code refactoring without changing behavior
- `test:` adding or updating tests
+You can optionally include a scope to indicate which package is affected:
+
+- `feat(app):` feature in the app package
+- `fix(desktop):` bug fix in the desktop package
+- `chore(opencode):` maintenance in the opencode package
+
Examples:
- `docs: update contributing guidelines`
- `fix: resolve crash on startup`
- `feat: add dark mode support`
+- `feat(app): add dark mode support`
+- `fix(desktop): resolve crash on startup`
- `chore: bump dependency versions`
### Style Preferences