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")