Skip to content

Commit d9269e2

Browse files
authored
ci: sequelize renovate setup (#1471)
1 parent 75a0be8 commit d9269e2

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

.commitlintrc.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
{
22
"extends": ["@commitlint/config-conventional"],
33
"rules": {
4-
"body-max-line-length": [0]
4+
"body-max-line-length": [0],
5+
"type-enum": [
6+
2,
7+
"always",
8+
[
9+
"build",
10+
"chore",
11+
"ci",
12+
"docs",
13+
"feat",
14+
"fix",
15+
"perf",
16+
"refactor",
17+
"revert",
18+
"style",
19+
"test",
20+
"meta"
21+
]
22+
]
523
}
624
}

renovate.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": [
3+
"config:base",
4+
":maintainLockFilesWeekly",
5+
":semanticCommitTypeAll(meta)",
6+
":semanticCommitScopeDisabled"
7+
],
8+
"automergeStrategy": "squash",
9+
"semanticCommitType": "meta",
10+
"packageRules": [
11+
{
12+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
13+
"automerge": true
14+
},
15+
{
16+
"matchPackageNames": ["mocha", "@types/mocha", "sinon", "@types/sinon"],
17+
"matchUpdateTypes": ["major"],
18+
"enabled": false
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)