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
This commit is contained in:
parent
e1a7569c94
commit
d6d40ed431
2 changed files with 7 additions and 5 deletions
9
.github/dependabot.yml
vendored
9
.github/dependabot.yml
vendored
|
|
@ -1,4 +1,3 @@
|
|||
# TEMPORARILY DISABLED — re-enable by removing open-pull-requests-limit: 0
|
||||
version: 2
|
||||
updates:
|
||||
# Python (root pyproject.toml)
|
||||
|
|
@ -6,21 +5,21 @@ updates:
|
|||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 0
|
||||
open-pull-requests-limit: 5
|
||||
|
||||
# JavaScript (codeflash npm package)
|
||||
- package-ecosystem: "npm"
|
||||
directory: "/packages/codeflash"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 0
|
||||
open-pull-requests-limit: 5
|
||||
|
||||
# GitHub Actions
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 0
|
||||
open-pull-requests-limit: 5
|
||||
|
||||
# code_to_optimize/ directories are test fixtures — do NOT update them.
|
||||
# Dependabot PRs for these always fail (missing secrets) and waste CI.
|
||||
# Their package-lock.json files are gitignored to prevent Dependabot alerts.
|
||||
|
|
|
|||
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -275,6 +275,9 @@ tessl.json
|
|||
**/dist-nuitka/**
|
||||
**/.npmrc
|
||||
|
||||
# Test fixture lockfiles — prevents Dependabot from scanning them
|
||||
code_to_optimize/**/package-lock.json
|
||||
|
||||
# Tessl auto-generates AGENTS.md on install; ignore to avoid cluttering git status
|
||||
AGENTS.md
|
||||
.serena/
|
||||
|
|
|
|||
Loading…
Reference in a new issue