From 7b2225cac568177b3e39de5d56eda0762bc1276d Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Mon, 23 Mar 2026 16:04:55 -0700 Subject: [PATCH] fix: actionlint config placement + shellcheck disable scope - Move actionlint.yaml to .github/ where rhysd/actionlint Docker action finds it - Move shellcheck disable=SC2086 to top of script block (covers both loops) Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/actionlint.yaml | 3 +++ .github/workflows/evals.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .github/actionlint.yaml diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 00000000..7c54d0c6 --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,3 @@ +self-hosted-runner: + labels: + - ubicloud-standard-2 diff --git a/.github/workflows/evals.yml b/.github/workflows/evals.yml index b65d2ee9..8c749322 100644 --- a/.github/workflows/evals.yml +++ b/.github/workflows/evals.yml @@ -149,6 +149,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + # shellcheck disable=SC2086 RESULTS=$(find /tmp/eval-results -name '*.json' 2>/dev/null | sort) if [ -z "$RESULTS" ]; then echo "No eval results found" @@ -157,7 +158,6 @@ jobs: TOTAL=0; PASSED=0; FAILED=0; COST="0" SUITE_LINES="" - # shellcheck disable=SC2086 # intentional word splitting for f in $RESULTS; do T=$(jq -r '.total_tests // 0' "$f") P=$(jq -r '.passed // 0' "$f")