Skip to content

Commit a062914

Browse files
authored
chore: enable dependabot for npm and cargo dependencies (#138)
* chore: enable dependabot for npm and cargo dependencies * chore: add lockfile and dependabot entry for test/crashtracker
1 parent 333217d commit a062914

2 files changed

Lines changed: 899 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,56 @@ updates:
1515
gh-actions-packages:
1616
patterns:
1717
- "*"
18+
19+
- package-ecosystem: "npm"
20+
directory: "/"
21+
schedule:
22+
interval: "weekly"
23+
versioning-strategy: "increase"
24+
labels:
25+
- dependabot
26+
- dependencies
27+
- javascript
28+
- semver-patch
29+
groups:
30+
patch-updates:
31+
update-types:
32+
- "patch"
33+
minor-updates:
34+
update-types:
35+
- "minor"
36+
37+
- package-ecosystem: "npm"
38+
directory: "/test/crashtracker"
39+
schedule:
40+
interval: "weekly"
41+
versioning-strategy: "increase"
42+
labels:
43+
- dependabot
44+
- dependencies
45+
- javascript
46+
- semver-patch
47+
groups:
48+
patch-updates:
49+
update-types:
50+
- "patch"
51+
minor-updates:
52+
update-types:
53+
- "minor"
54+
55+
- package-ecosystem: "cargo"
56+
directory: "/"
57+
schedule:
58+
interval: "weekly"
59+
labels:
60+
- dependabot
61+
- dependencies
62+
- rust
63+
- semver-patch
64+
groups:
65+
patch-updates:
66+
update-types:
67+
- "patch"
68+
minor-updates:
69+
update-types:
70+
- "minor"

0 commit comments

Comments
 (0)