Skip to content

Commit fd8aeb5

Browse files
authored
chore: setup dependabot (#20)
1 parent 02aee9c commit fd8aeb5

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
version: 2
22
updates:
3-
# Enable version updates for Python pip dependencies
3+
# Python pip dependencies - security updates only
4+
# Regular version updates are disabled because we use compatible release
5+
# constraints (~=) in pyproject.toml to pin patch versions.
6+
# Dependabot Security Updates (enabled in repo settings) bypass these rules.
47
- package-ecosystem: "pip"
58
directory: "/"
69
schedule:
710
interval: "weekly"
811
day: "monday"
912
time: "09:00"
10-
13+
# Ignore all regular version updates - security updates still come through
14+
ignore:
15+
- dependency-name: "*"
16+
update-types:
17+
- "version-update:semver-major"
18+
- "version-update:semver-minor"
19+
- "version-update:semver-patch"
1120
# Commit message configuration
1221
commit-message:
1322
prefix: "chore"

0 commit comments

Comments
 (0)