RocketChat/Rocket.Chat

View on GitHub
.github/pr-title-checker-config.json

Summary

Maintainability
Test Coverage
{
    "LABEL": {
        "name": "Invalid PR Title",
        "color": "B60205"
    },
    "CHECKS": {
        "regexp": "(feat|fix|ci|chore|docs|test|refactor|i18n|regression|revert)(\\([^\\)]+\\))?\\!?: .{1,}$|(?:Bump .+)$|^Release [0-9]+\\.[0-9]+\\.[0-9]+$|^Merge master into develop",
        "ignoreLabels": ["[ignore-title]"]
    },
    "MESSAGES": {
        "failure": "Invalid PR title. Please use one of the following formats: 'feat: add new feature', 'fix: fix a bug', 'ci: update CI configuration', 'chore: update dependencies', 'docs: update documentation', 'test: add tests', 'refactor: refactor code', 'i18n: update translations', 'regression: fix a regression'.\nFor more info please check [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/)."
    }
}