-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdependabot.yml
More file actions
52 lines (50 loc) · 1.71 KB
/
dependabot.yml
File metadata and controls
52 lines (50 loc) · 1.71 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
# Dependabot version update configuration for GitHub Well-Architected Framework
# Optimized for static site operations - balancing security with maintenance effort
#
# Configuration principles:
# - Monthly scheduled updates to balance dependency freshness with maintenance effort
# - increase-if-necessary versioning for npm to minimize breaking changes
# - Grouped updates per ecosystem per intentional for easier review
version: 2
updates:
# GitHub Actions dependencies
- package-ecosystem: "github-actions"
directory: "/.github/workflows"
schedule:
# Monthly scheduled updates to balance freshness with maintenance effort; security updates can still be raised separately
interval: "monthly"
commit-message:
prefix: "chore(deps)"
reviewers:
- "github/cse-intelligence-engine-squad"
# Group version and security updates separately.
groups:
actions-version:
applies-to: version-updates
patterns:
- "*"
actions-security:
applies-to: security-updates
patterns:
- "*"
# NPM dependencies (Hugo site and tooling)
- package-ecosystem: "npm"
directory: "/"
schedule:
# Monthly scheduled updates to balance freshness with maintenance effort; security updates can still be raised separately
interval: "monthly"
commit-message:
prefix: "chore(deps)"
versioning-strategy: increase-if-necessary
reviewers:
- "github/cse-intelligence-engine-squad"
# Group version and security updates separately.
groups:
npm-version:
applies-to: version-updates
patterns:
- "*"
npm-security:
applies-to: security-updates
patterns:
- "*"