[lockfile-stats] Lockfile Statistics Analysis — 2026-06-13 (246 workflows, 28.7 MB, +2.75% / 24h) #39146
Closed
Replies: 1 comment
-
|
This discussion has been marked as outdated by Lockfile Statistics Analysis Agent. A newer discussion is available at Discussion #39283. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Executive Summary
Analysis of 246 compiled
.lock.ymlworkflows in.github/workflowsas of 2026-06-13 (0 malformed/skipped). Aggregate size is 28.66 MB (avg 113.8 KB/file, median 115.8 KB, range 76.8–176.7 KB).The lockfile count held steady at 246, but generated output grew +2.75% in a single day (+768 KB) and average steps-per-workflow rose +4.0 — a sign the compiler emitted more boilerplate per workflow rather than new workflows being added.
File Size Distribution
Every file is now ≥50 KB; 14 files crossed from the 50–100 KB band into 100 KB+ overnight — the day's growth was broad-based, not concentrated.
Largest & smallest files
Largest: smoke-copilot-aoai-entra (176.7 KB), smoke-copilot-aoai-apikey (176.4 KB), smoke-copilot (175.7 KB), smoke-claude (172.4 KB), smoke-copilot-arm (163.5 KB), smoke-codex (151.2 KB).
Smallest: test-workflow (76.8 KB), example-permissions-warning (77.5 KB), codex-github-remote-mcp-test (78.3 KB), firewall (78.7 KB), ace-editor (86.1 KB).
The
smoke-*matrix dominates the top — multi-engine smoke tests carry the most generated scaffolding.Trigger Analysis
Top combinations:
schedule + workflow_dispatch(161),workflow_dispatchonly (47),pull_request + workflow_dispatch(26). 97% of workflows expose a manualworkflow_dispatchdispatch.Schedule cron frequencies (top)
Crons are well-distributed across off-peak minutes (good — avoids the
:00thundering herd). Most-shared slots appear only twice (e.g.49 14 * * 1-5,23 11 * * *,38 3 * * *). A handful use*/6hor*/4hintervals; one hourly (23 * * * *).Safe Outputs Analysis
safe_output_typesbreakdown or top-levelpermissionsmap from this lockfile schema (both returned empty). This is a known parser limitation, not evidence of zero safe-outputs — these fields are emitted in a structure the v1 regex pass doesn't capture. Flagged for a v2 schema bump (see Recommendations).Structural Characteristics
Totals: 1,979 jobs, 27,956 steps, 12,831 run-blocks. Job count is rigid (5–12, tight band) while step count grew, confirming the day's expansion was within existing jobs.
Permission Patterns
Top-level permissions parsed as empty (
{}) for all 246 — same v2-parser caveat as Safe Outputs. Permission posture cannot be reliably reported from this schema pass.Tool & MCP Patterns
GitHub MCP utterly dominates (≈97% of all references). A long tail of read tools (
get_commit,get_file_contents,issue_read,list_commits, ...) each appears in 126 workflows — the standard read-only GitHub toolset is broadly shared.Engine distribution: copilot 164, claude 63, codex 14, then single instances of antigravity/crush/gemini/opencode/pi.
Interesting Findings
smoke-*matrix is the heavyweight class — the six largest files are all multi-engine smoke tests; smoke-copilot also holds the step-count record (152).Historical Trends (24h, 2026-06-12 → 2026-06-13)
A 23-day history (since 2026-05-20) is retained in cache for longer-range trending.
Recommendations
lockfile_stats_v2.pyto correctly extractsafe_output_types, discussion categories, and the top-levelpermissionsmap — these are the report's two current blind spots.smoke-*matrix as the size leader; trim duplicated scaffolding there for the largest aggregate savings.Methodology Note
Single-script compact JSON analysis: one cached Python pass (
lockfile_stats_v1.py) parsed all 246 lockfiles into a ~4.8 KB JSON summary; all reasoning derived from that summary plus the prior-day cached summary. 0 files skipped. Safe-output/permission fields are a known v1 schema gap (see Rec. 1).References: §27478463071
Beta Was this translation helpful? Give feedback.
All reactions