Merge pull request #2027 from codeflash-ai/fix/dependabot-exclude-fixtures

ci: exclude test fixtures from Dependabot
This commit is contained in:
Kevin Turcios 2026-04-09 02:51:20 -05:00 committed by GitHub
commit 9e6923916c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

22
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,22 @@
version: 2
updates:
# Python (root pyproject.toml)
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
# JavaScript (codeflash npm package)
- package-ecosystem: "npm"
directory: "/packages/codeflash"
schedule:
interval: "weekly"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
# code_to_optimize/ directories are test fixtures — do NOT update them.
# Dependabot PRs for these always fail (missing secrets) and waste CI.