Skip to content

Commit 554fe18

Browse files
authored
chore: update depedabot setting
Update dependabot setting to reduce unnecessary change and noise. Ref fastify/fastify#6715 Signed-off-by: KaKa <23028015+climba03003@users.noreply.github.com>
1 parent 2cc25ed commit 554fe18

1 file changed

Lines changed: 42 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,52 @@ version: 2
22
updates:
33
- package-ecosystem: "github-actions"
44
directory: "/"
5+
commit-message:
6+
# Prefix all commit messages with "chore: "
7+
prefix: "chore"
58
schedule:
6-
interval: "monthly"
9+
interval: "weekly"
10+
cooldown:
11+
default-days: 7
12+
allow:
13+
- dependency-name: "*"
14+
update-types:
15+
- "version-update:semver-major"
716
open-pull-requests-limit: 10
817

918
- package-ecosystem: "npm"
1019
directory: "/"
20+
commit-message:
21+
# Prefix all commit messages with "chore: "
22+
prefix: "chore"
1123
schedule:
12-
interval: "monthly"
24+
interval: "weekly"
25+
cooldown:
26+
default-days: 7
27+
versioning-strategy: "increase-if-necessary"
28+
allow:
29+
- dependency-name: "*"
30+
update-types:
31+
- "version-update:semver-major"
32+
ignore:
33+
# TODO: remove ignore until neostandard support ESLint 10
34+
- dependency-name: "eslint"
35+
- dependency-name: "neostandard"
36+
- dependency-name: "@stylistic/*"
1337
open-pull-requests-limit: 10
38+
groups:
39+
# Production dependencies with breaking changes
40+
dependencies:
41+
dependency-type: "production"
42+
# ESLint related dependencies
43+
dev-dependencies-eslint:
44+
patterns:
45+
- "eslint"
46+
- "neostandard"
47+
- "@stylistic/*"
48+
# TypeScript related dependencies
49+
dev-dependencies-typescript:
50+
patterns:
51+
- "@types/*"
52+
- "tstyche"
53+
- "typescript"

0 commit comments

Comments
 (0)