From 56c30a9bee843eed91f3eb9388b103a998fe3707 Mon Sep 17 00:00:00 2001 From: Oliver Baer <75138893+mrwind-up-bird@users.noreply.github.com> Date: Tue, 10 Mar 2026 02:54:31 +0100 Subject: [PATCH] fix(autofix): Inefficient N+1 query pattern in coupling analysis --- examples/github-actions/coupling-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/github-actions/coupling-analysis.yml b/examples/github-actions/coupling-analysis.yml index 853c2499..791a55df 100644 --- a/examples/github-actions/coupling-analysis.yml +++ b/examples/github-actions/coupling-analysis.yml @@ -75,10 +75,10 @@ jobs: - name: Analyze Coupling if: steps.changed.outputs.has_files == 'true' - id: coupling - run: | - MIN_CORR="${{ github.event.inputs.min_correlation || env.MIN_CORRELATION }}" MIN_CO="${{ github.event.inputs.min_cochanges || env.MIN_COCHANGES }}" + --min-cochanges="$MIN_CO" \ + --format=json \ + > coupling.json ckb coupling \ --files="${{ steps.changed.outputs.files }}" \