Skip to content

Commit 323a8a3

Browse files
authored
Merge pull request #14 from The-Adimension/ci/dependabot
ci: add Dependabot configuration for pip and GitHub Actions
2 parents 6a20f8c + 7e03fd6 commit 323a8a3

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/dependabot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# ──────────────────────────────────────────────────────────────────────
2+
# Dependabot — Automated dependency update PRs
3+
# Monitors pip (Python) and github-actions ecosystems for outdated or
4+
# vulnerable dependencies and opens PRs automatically.
5+
# ──────────────────────────────────────────────────────────────────────
6+
7+
version: 2
8+
9+
updates:
10+
# Python dependencies (requirements.txt)
11+
- package-ecosystem: pip
12+
directory: "/"
13+
schedule:
14+
interval: daily
15+
open-pull-requests-limit: 10
16+
labels:
17+
- dependencies
18+
- python
19+
20+
# GitHub Actions versions
21+
- package-ecosystem: github-actions
22+
directory: "/"
23+
schedule:
24+
interval: weekly
25+
open-pull-requests-limit: 5
26+
labels:
27+
- dependencies
28+
- github-actions

0 commit comments

Comments
 (0)