The PR title must follow the Conventional Commit specification. For this, the allowed structure is:
feat(ui): add buttom component
^ ^ ^
| | |__ Subject
| |_______ Scope
|____________ Type
- The allowed type must match with the accepted commit types defined in the Conventional Commit specification. For updated component versions in a Helm chart or bumped versions, we must use the
feattype. - The
scopeis optional, and would be the Jira issue/ticket in which you are working. Usesno-refwhen there’s no reference to a ticket; although it’s not recommended to do code changes with non-tracked changes. - The
subjectmust match the following regex^(?![A-Z]).+$(ensures the subject doesn't start with an uppercase character).