this-oliver/detect-conventional-bump
Detects the type of bump for a given message based on conventional commit standards.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| message | The message to analyze. | yes | — |
| keywords-major | Keywords that indicate a major bump separated by commas. Case insensitive. | no | major, breaking |
| keywords-minor | Keywords that indicate a minor bump separated by commas. Case insensitive. | no | minor, feat, ft |
| keywords-patch | Keywords that indicate a patch bump separated by commas. Case insensitive. | no | patch, fix, chore, docs |
| keyword-scopes | Comma-separated list of keywords that the scope should be checked against - if value is empty, the scope will not be checked. Case insensitive. | no | — |
| force-scope | Boolean value to fail if the scope is not in the message. | no | false |
Outputs
| name | description |
|---|---|
| type | The type of bump detected (major, minor, patch). |