From 1c593c46045f6e7fc2405bc7fc2cd98504651b3c Mon Sep 17 00:00:00 2001 From: Marko Stankovic Date: Sat, 15 Aug 2026 06:38:33 +0200 Subject: [PATCH 1/2] chore: ignore the paths the perf workflow writes perf.yml creates perf-results/ and perf-input.jsonl at the repo root. Neither is ignored, so a local run of the perf lane leaves two untracked paths behind, one of them a 300 line generated dataset. Co-Authored-By: Claude Opus 5 (1M context) Signed-off-by: Marko Stankovic --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index fdc44128c..f4ae750c8 100644 --- a/.gitignore +++ b/.gitignore @@ -130,6 +130,10 @@ benchmark/perf/results/* !benchmark/perf/results/.gitkeep benchmark/perf/example_report.md +# Perf benchmark output (.github/workflows/perf.yml) +perf-results/ +perf-input.jsonl + # Terminal-Bench classifier run artifacts (server/harbor logs, agent # trajectories, asciinema recordings — re-generated per run) benchmark/tb_runs/ From 515edf0f37d384807a9a9950134ddc9c81820941 Mon Sep 17 00:00:00 2001 From: Marko Stankovic Date: Wed, 19 Aug 2026 12:41:56 +0200 Subject: [PATCH 2/2] chore: root-anchor the perf output ignore rules Review asked for /perf-results/ and /perf-input.jsonl so same-named nested paths are not hidden. The workflow only writes them at the repo root. Co-Authored-By: Claude Fable 5 Signed-off-by: Marko Stankovic --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f4ae750c8..c82f42c45 100644 --- a/.gitignore +++ b/.gitignore @@ -131,8 +131,8 @@ benchmark/perf/results/* benchmark/perf/example_report.md # Perf benchmark output (.github/workflows/perf.yml) -perf-results/ -perf-input.jsonl +/perf-results/ +/perf-input.jsonl # Terminal-Bench classifier run artifacts (server/harbor logs, agent # trajectories, asciinema recordings — re-generated per run)