Skip to content

Commit db93c4a

Browse files
committed
chore: add Dependabot config for quickstarts
1 parent 51c7446 commit db93c4a

1 file changed

Lines changed: 67 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
version: 2
2+
3+
# templates/go uses go.mod.embed, which Dependabot cannot target. Its updates
4+
# come from the Go example through the sync-go-template-deps command.
5+
multi-ecosystem-groups:
6+
hatchet-sdk-examples:
7+
schedule:
8+
interval: "weekly"
9+
day: "monday"
10+
open-pull-requests-limit: 1
11+
12+
updates:
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
day: "monday"
18+
cooldown:
19+
default-days: 30
20+
open-pull-requests-limit: 1
21+
groups:
22+
github-actions:
23+
patterns: ["*"]
24+
25+
- package-ecosystem: "gomod"
26+
directory: "/examples/simple-go"
27+
schedule:
28+
interval: "weekly"
29+
day: "monday"
30+
cooldown:
31+
semver-major-days: 30
32+
semver-minor-days: 7
33+
semver-patch-days: 3
34+
open-pull-requests-limit: 2
35+
groups:
36+
go-modules:
37+
patterns: ["*"]
38+
update-types: ["patch", "minor"]
39+
40+
- package-ecosystem: "pip"
41+
directories:
42+
- "/examples/simple-python"
43+
- "/templates/python/poetry"
44+
- "/templates/python/pip"
45+
multi-ecosystem-group: "hatchet-sdk-examples"
46+
patterns: ["*"]
47+
48+
- package-ecosystem: "uv"
49+
directories:
50+
- "/templates/python/uv"
51+
multi-ecosystem-group: "hatchet-sdk-examples"
52+
patterns: ["*"]
53+
54+
- package-ecosystem: "npm"
55+
directories:
56+
- "/examples/simple-typescript"
57+
- "/templates/typescript/npm"
58+
- "/templates/typescript/pnpm"
59+
- "/templates/typescript/yarn"
60+
multi-ecosystem-group: "hatchet-sdk-examples"
61+
patterns: ["*"]
62+
63+
- package-ecosystem: "bun"
64+
directories:
65+
- "/templates/typescript/bun"
66+
multi-ecosystem-group: "hatchet-sdk-examples"
67+
patterns: ["*"]

0 commit comments

Comments
 (0)