Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 34fc62d

Browse files
authored
chore: add Dependabot configuration (#97)
1 parent ed387a5 commit 34fc62d

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.github/dependabot.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "06:00"
8+
timezone: "America/Chicago"
9+
commit-message:
10+
prefix: "chore"
11+
ignore:
12+
# These actions deliver the latest versions by updating the major
13+
# release tag, so ignore minor and patch versions
14+
- dependency-name: "actions/*"
15+
update-types:
16+
- version-update:semver-minor
17+
- version-update:semver-patch
18+
- dependency-name: "Apple-Actions/import-codesign-certs"
19+
update-types:
20+
- version-update:semver-minor
21+
- version-update:semver-patch
22+
- dependency-name: "marocchino/sticky-pull-request-comment"
23+
update-types:
24+
- version-update:semver-minor
25+
- version-update:semver-patch
26+
27+
- package-ecosystem: "gomod"
28+
directory: "/"
29+
schedule:
30+
interval: "daily"
31+
time: "06:00"
32+
timezone: "America/Chicago"
33+
commit-message:
34+
prefix: "chore"
35+
36+
- package-ecosystem: "npm"
37+
directory: "/"
38+
schedule:
39+
interval: "daily"
40+
time: "06:00"
41+
timezone: "America/Chicago"
42+
commit-message:
43+
prefix: "chore"
44+
ignore:
45+
# Ignore major updates to Node.js types, because they need to
46+
# correspond to the Node.js engine version
47+
- dependency-name: "@types/node"
48+
update-types:
49+
- version-update:semver-major

0 commit comments

Comments
 (0)