-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdependabot.yml
More file actions
73 lines (69 loc) · 2.55 KB
/
dependabot.yml
File metadata and controls
73 lines (69 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Dependabot configuration for stackitcloud/external-dns-stackit-webhook
# Documentation: https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# ──────────────────────────────────────────────
# Go modules (go.mod / go.sum)
# ──────────────────────────────────────────────
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Europe/Berlin"
open-pull-requests-limit: 10
reviewers:
- "stackitcloud/dns"
labels:
- "dependencies"
- "go"
commit-message:
prefix: "chore"
prefix-development: "chore"
# Ignore k8s major bumps — they require coordinated upgrades with external-dns
ignore:
- dependency-name: "k8s.io/*"
update-types:
- "version-update:semver-major"
- dependency-name: "sigs.k8s.io/*"
update-types:
- "version-update:semver-major"
# ──────────────────────────────────────────────
# GitHub Actions (.github/workflows/*.yml)
# ──────────��───────────────────────────────────
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Europe/Berlin"
open-pull-requests-limit: 5
reviewers:
- "stackitcloud/dns"
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "chore"
prefix-development: "chore"
# ──────────────────────────────────────────────
# Docker (Dockerfile)
# ──────────────────────────────────────────────
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Europe/Berlin"
open-pull-requests-limit: 5
reviewers:
- "stackitcloud/dns"
labels:
- "dependencies"
- "docker"
commit-message:
prefix: "chore"
prefix-development: "chore"