Skip to content

Commit 3e36aed

Browse files
chore(repo): atomic codeql-action bumps and root-artifact hygiene
- dependabot.yml: group github/codeql-action/* so init+analyze always bump in one PR; a mixed-version pair deterministically fails CodeQL's analyze post-action step (seen on open dependabot #157/#158) - .gitignore: schema-migration flock (.*.migration.lock, held live while the server runs) plus regenerable root-level diagnostic dumps (/404_paths.txt /disk_report.txt /large_files.txt /stats_pm2.txt /venv_status.txt /r3.txt)
1 parent c2d0ba9 commit 3e36aed

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ updates:
2626
schedule:
2727
interval: "weekly"
2828
open-pull-requests-limit: 3
29+
groups:
30+
# codeql-action's init and analyze steps must always bump together —
31+
# a mixed-version pair fails CodeQL's analyze post-action step.
32+
codeql-action:
33+
patterns:
34+
- "github/codeql-action/*"

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,16 @@ cookies.txt
114114

115115
# uv lockfile (generated tooling, not a project dependency)
116116
uv.lock
117+
118+
# Schema-migration flock lives next to the DB (engraphis/config.py _migration_lock);
119+
# regenerable runtime state like *.db itself. Held live while the server runs.
120+
.*.migration.lock
121+
122+
# One-off diagnostic/report dumps that keep landing at the repo root — regenerable
123+
# command output, never package content (same policy as /_*.mjs above).
124+
/404_paths.txt
125+
/disk_report.txt
126+
/large_files.txt
127+
/stats_pm2.txt
128+
/venv_status.txt
129+
/r3.txt

0 commit comments

Comments
 (0)