Skip to content

Commit 680184f

Browse files
authored
Add GitHub Actions to Dependabot configuration (#727)
Limit version update PRs to security-only by setting open-pull-requests-limit to 0, matching the approach used in the Go SDK (see databricks/databricks-sdk-go#988). Add the github-actions package ecosystem with a monthly update interval. Monthly keeps churn low while ensuring deprecation notices and security fixes flow in through PRs. The 7-day cooldown avoids bumping actions that were just released, letting them bake first. Exclude tagging.yml because it is generated and maintained externally. Co-authored-by: Isaac NO_CHANGELOG=true
1 parent 47ea8a7 commit 680184f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,14 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "daily"
7+
# Disable version update PRs; only security updates are opened.
8+
open-pull-requests-limit: 0
9+
- package-ecosystem: github-actions
10+
directory: /
11+
schedule:
12+
interval: monthly
13+
cooldown:
14+
default-days: 7
15+
# tagging.yml is generated and maintained externally.
16+
exclude-paths:
17+
- .github/workflows/tagging.yml

0 commit comments

Comments
 (0)