Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement PR title checker workflow for conventional commit pre…
…fixes (#889) ## Related Issues - Closes #883 ## Description This pull request addresses the need for a PR title checker to ensure conformity to conventional commit prefixes. The specified prefixes include `build`, `chore`, `docs`, `feat`, `fix`, `perf`, `refactor`, `revert`, `style`, and `test`. Consistent PR titles are essential for maintaining clarity and organization in the project's version history. ### Files added - `.github/pr-title-checker.json` - `.github/workflows/pr-title-checker.yml` ### Solution: 1. Developed a PR title checker script to validate titles against the defined prefixes. 2. Integrated the checker into the project's CI/CD pipeline for automatic validation. 3. Defined clear error messages for non-compliant PR titles, aiding contributors in adhering to guidelines. ### To-Do: - [x] Develop and test the PR title checker script. - [x] Integrate the checker into the CI/CD pipeline. - [x] Define error messages for non-compliant PR titles. This PR enhances the project's contribution guidelines by automating the validation of PR titles, ensuring adherence to conventional commit prefixes. Contributions and feedback are encouraged for continuous improvement. ## Checklist <!-- [X] - put a cross/X inside [] to check the box --> - [X] I have gone through the [contributing guide](https://github.com/Anjaliavv51/Retro) - [X] I have updated my branch and synced it with project `main` branch before making this PR - [X] I have performed a self-review of my code - [X] I have tested the changes thoroughly before submitting this pull request. - [X] I have provided relevant issue numbers, screenshots, and videos after making the changes.
- Loading branch information