codeflash/.github/dependabot.yml
Kevin Turcios d6d40ed431 Gitignore code_to_optimize lockfiles, re-enable Dependabot updates
- Add code_to_optimize/**/package-lock.json to .gitignore
- Re-enable Dependabot version updates with limit of 5 PRs per ecosystem
- Keep code_to_optimize/ ignore comment in dependabot.yml
2026-04-23 04:13:23 -05:00

25 lines
655 B
YAML

version: 2
updates:
# Python (root pyproject.toml)
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
# JavaScript (codeflash npm package)
- package-ecosystem: "npm"
directory: "/packages/codeflash"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
# code_to_optimize/ directories are test fixtures — do NOT update them.
# Their package-lock.json files are gitignored to prevent Dependabot alerts.