fix(ci): add missing PR template enhancements

- Add CI/CD workflow change type
- Expand checklist with quality gates sections
- Add Conventional Commits and branch naming reminders
- Better organize code quality, docs, testing, CI/CD sections

This file was modified in Phase 2 but accidentally not staged.
This commit is contained in:
Reza Rezvani
2025-11-12 12:59:58 +01:00
parent 2651797190
commit 078bf9f418
+26 -4
View File
@@ -13,10 +13,14 @@ Provide a clear and concise description of your changes.
- [ ] Code refactoring
- [ ] Performance improvement
- [ ] Test addition/improvement
- [ ] CI/CD workflow change
## Related Issues
Fixes #(issue_number)
<!-- Link at least one issue using keywords: Closes, Fixes, Resolves, Relates to -->
Closes #(issue_number)
<!-- or Fixes #123, Relates to #456 -->
## Changes Made
@@ -45,13 +49,31 @@ Add screenshots to help explain your changes.
## Checklist
### Code Quality
- [ ] My code follows the project's style guidelines
- [ ] Python syntax is valid (if applicable)
- [ ] Bash scripts have valid syntax (if applicable)
- [ ] Markdown files are properly formatted
- [ ] No hardcoded secrets or sensitive data
- [ ] I have commented my code where necessary
### Documentation
- [ ] I have updated the documentation (if needed)
- [ ] I have updated CHANGELOG.md with my changes
- [ ] My changes generate no new warnings
- [ ] I have updated CHANGELOG.md with my changes (for releases)
- [ ] README.md is updated if user-facing changes
### Testing
- [ ] I have tested my changes thoroughly
- [ ] All existing tests still pass
- [ ] Tested installation (./install.sh or install.ps1)
- [ ] Tested slash command (/enhance-claude-md) if applicable
- [ ] Tested guardian agent if applicable
- [ ] Tested on target environment (macOS/Linux/Windows)
### CI/CD
- [ ] PR title follows Conventional Commits format (e.g., `feat(installer): add feature`)
- [ ] Branch name follows convention (feature/, fix/, hotfix/, etc.)
- [ ] All quality gates passing
- [ ] No merge conflicts with target branch
## Additional Notes