PR title format is incorrect!
❌ Wrong examples:
- feat: Add new feature (first letter should be lowercase)
- add new feature (missing type prefix)
- featadd new feature (missing colon and space)
✅ Correct format:
type: brief description
or
type(scope): brief description
Allowed types:
- feat: new feature
- fix: bug fix
- docs: documentation update
- style: code formatting
- refactor: code refactoring
- perf: performance improvement
- test: testing
- build: build system
- ci: CI/CD
- chore: other changes
- revert: revert previous commit
Examples:
✅ feat: add product feature configuration
✅ fix: fix product list pagination
✅ feat(product): add feature configuration
✅ docs: update README deployment guide