mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 18:09:58 +00:00
* ci(deps): bump amannn/action-semantic-pull-request from 5.4.0 to 5.5.2
Bumps [amannn/action-semantic-pull-request](https://github.com/amannn/action-semantic-pull-request) from 5.4.0 to 5.5.2.
- [Release notes](https://github.com/amannn/action-semantic-pull-request/releases)
- [Changelog](https://github.com/amannn/action-semantic-pull-request/blob/main/CHANGELOG.md)
- [Commits](e9fabac35e...cfb60706e1)
---
updated-dependencies:
- dependency-name: amannn/action-semantic-pull-request
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* chore(repo): fix commitlint config
Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
---------
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com>
20 lines
686 B
JavaScript
20 lines
686 B
JavaScript
const Configuration = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
plugins: ['commitlint-plugin-function-rules'],
|
|
rules: {
|
|
'type-enum': [2, 'always', ['chore', 'ci', 'docs', 'feat', 'test', 'fix', 'sec']],
|
|
'body-max-line-length': [1, 'always', 500],
|
|
'subject-case': [2, 'always', ['lower-case', 'sentence-case', 'upper-case']],
|
|
},
|
|
/*
|
|
* Whether commitlint uses the default ignore rules, see the description above.
|
|
*/
|
|
defaultIgnores: true,
|
|
/*
|
|
* Custom URL to show upon failure
|
|
*/
|
|
helpUrl:
|
|
'https://github.com/projectcapsule/capsule/blob/main/CONTRIBUTING.md#commits',
|
|
};
|
|
|
|
module.exports = Configuration; |