Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 947a5d3

Browse files
committed
ci: update the dependabot config to work with 2.x
1 parent ba666c0 commit 947a5d3

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

.dependabot/config.yml

-12
This file was deleted.

.github/dependabot.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Validator: https://dependabot.com/docs/config-file-beta/validator/
2+
version: 2
3+
updates:
4+
# node packages
5+
- package-ecosystem: "npm"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
commit-message:
10+
prefix: "chore"
11+
include: "scope"
12+
# set this to 0 to disable updates
13+
open-pull-requests-limit: 10
14+
15+
# github actions
16+
- package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "daily"
20+
commit-message:
21+
prefix: "chore"
22+
include: "scope"
23+
open-pull-requests-limit: 10

commitlint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ module.exports = {
55
'footer-max-line-length': [0, 'never'],
66
'body-max-line-length': [0, 'never'],
77
},
8+
ignores: [(message) => message.startsWith('chore(deps): ')],
89
};

0 commit comments

Comments
 (0)