Skip to content

Commit 5f88452

Browse files
committed
fix(ci): integrate deps commit type
1 parent d88c3d8 commit 5f88452

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ updates:
77
interval: daily
88
time: "11:00"
99
commit-message:
10-
prefix: "build"
11-
include: "scope"
10+
prefix: "deps"
1211
groups:
1312
akka:
1413
patterns:
@@ -19,5 +18,4 @@ updates:
1918
schedule:
2019
interval: weekly
2120
commit-message:
22-
prefix: "ci"
23-
include: "scope"
21+
prefix: "deps"

.github/workflows/commitlint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
test
3030
ci
3131
build
32+
deps
3233
3334
lint-commits:
3435
runs-on: ubuntu-latest

commitlint.config.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
export default {
22
extends: ['@commitlint/config-conventional'],
3-
ignores: [(commit) => /^Signed-off-by: dependabot\[bot\]/m.test(commit)]
3+
rules: {
4+
'type-enum': [2, 'always', [
5+
'feat', 'fix', 'perf', 'docs', 'chore',
6+
'refactor', 'test', 'ci', 'build', 'deps',
7+
]],
8+
},
9+
ignores: [(commit) => /^Signed-off-by: dependabot\[bot\]/m.test(commit)],
410
};

release-please-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
{ "type": "refactor", "hidden": true },
1717
{ "type": "test", "hidden": true },
1818
{ "type": "ci", "hidden": true },
19-
{ "type": "build", "hidden": true }
19+
{ "type": "build", "hidden": true },
20+
{ "type": "deps", "section": "Dependencies" }
2021
]
2122
}
2223
}

0 commit comments

Comments
 (0)