Skip to content

Commit aa80272

Browse files
committed
Initial commit
0 parents  commit aa80272

File tree

3 files changed

+427
-0
lines changed

3 files changed

+427
-0
lines changed

.github/dependabot.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
labels:
13+
- "dependencies"
14+
- "npm"
15+
commit-message:
16+
prefix: "chore"
17+
include: "scope"
18+
versioning-strategy: "increase-if-necessary"
19+
allow:
20+
- dependency-name: "*"
21+
dependency-type: "direct"
22+
ignore:
23+
- dependency-name: "*"
24+
update-types:
25+
- "version-update:semver-patch"
26+
- "version-update:semver-minor"
27+
28+
- package-ecosystem: "github-actions"
29+
directory: "/"
30+
schedule:
31+
interval: "weekly"
32+
labels:
33+
- "dependencies"
34+
- "github_actions"
35+
commit-message:
36+
prefix: "chore"
37+
include: "scope"
38+
ignore:
39+
- dependency-name: "*"
40+
update-types:
41+
- "version-update:semver-patch"
42+
- "version-update:semver-minor"
43+
44+
- package-ecosystem: "gitsubmodule"
45+
directory: "/"
46+
schedule:
47+
interval: "weekly"
48+
labels:
49+
- "dependencies"
50+
- "submodules"
51+
commit-message:
52+
prefix: "chore"
53+
include: "scope"

0 commit comments

Comments
 (0)