forked from sjnims/plugin-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yml
More file actions
39 lines (39 loc) · 1000 Bytes
/
dependabot.yml
File metadata and controls
39 lines (39 loc) · 1000 Bytes
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
version: 2
updates:
# GitHub Actions - Keep workflow action versions up to date
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "America/New_York"
labels:
- "dependencies"
- "github-actions"
assignees:
- "kylesnowschwartz"
reviewers:
- "kylesnowschwartz"
commit-message:
prefix: "chore"
include: "scope"
# Group updates to reduce PR noise
groups:
# Anthropic's action - core dependency for this plugin repo, review carefully
claude-code-action:
patterns:
- "anthropics/*"
update-types:
- "minor"
- "patch"
# All other minor/patch updates - safe for auto-merge
actions-minor-patch:
patterns:
- "*"
exclude-patterns:
- "anthropics/*"
update-types:
- "minor"
- "patch"
open-pull-requests-limit: 5