forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yml
More file actions
41 lines (40 loc) · 1.24 KB
/
Copy pathdependabot.yml
File metadata and controls
41 lines (40 loc) · 1.24 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
# Dependabot config — keeps SHA-pinned GitHub Actions current.
#
# Without this, every action pinned to a commit SHA in .github/workflows
# silently rots: vulnerabilities discovered upstream don't reach us, and
# our pinned SHAs drift further from the action's release tags every week.
#
# Scope: GitHub Actions only. Node/Python/pnpm dependency updates are
# already handled by Renovate / manual upgrades and don't belong here.
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
cooldown:
default-days: 1
commit-message:
prefix: "chore(ci)"
include: "scope"
labels:
- "dependencies"
- "github-actions"
- "security"
groups:
minor-and-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"
# Workaround for dependabot/dependabot-core#14202: without an explicit
# major group, major updates matching the minor-and-patch pattern are
# silently suppressed. Remove this group when #14202 is fixed to get
# individual (ungrouped) PRs per major bump instead.
major:
patterns:
- "*"
update-types:
- "major"