Skip to content

Commit 9e69239

Browse files
authored
Merge pull request #2027 from codeflash-ai/fix/dependabot-exclude-fixtures
ci: exclude test fixtures from Dependabot
2 parents bd051ff + 50224ba commit 9e69239

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
# Python (root pyproject.toml)
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
9+
# JavaScript (codeflash npm package)
10+
- package-ecosystem: "npm"
11+
directory: "/packages/codeflash"
12+
schedule:
13+
interval: "weekly"
14+
15+
# GitHub Actions
16+
- package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"
20+
21+
# code_to_optimize/ directories are test fixtures — do NOT update them.
22+
# Dependabot PRs for these always fail (missing secrets) and waste CI.

0 commit comments

Comments
 (0)