From f7bf1d9a00a61969b718986a6ff10752ea6543c1 Mon Sep 17 00:00:00 2001 From: Katherine Fairchild Date: Sun, 7 Jan 2024 23:47:15 -0500 Subject: [PATCH] double -> single quotes for pr_head_sha retrieval (#473) Co-authored-by: Katherine Fairchild --- .github/workflows/automerge_plugin-only_prs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/automerge_plugin-only_prs.yml b/.github/workflows/automerge_plugin-only_prs.yml index 4b98c954f..a7d13faa5 100644 --- a/.github/workflows/automerge_plugin-only_prs.yml +++ b/.github/workflows/automerge_plugin-only_prs.yml @@ -35,7 +35,8 @@ jobs: - name: Get test results and ensure automergeable id: gettestresults run: | - echo "pr_head_sha=$( python -c \"from brainscore_vision.submission.check_test_status import print_pr_head_sha; print_pr_head_sha()\" )" echo "Checking test results for SHA $pr_head_sha" + echo "pr_head_sha=$( python -c 'from brainscore_vision.submission.check_test_status import print_pr_head_sha; print_pr_head_sha()' )" + echo "Checking test results for SHA $pr_head_sha" echo "test_results=$( python brainscore_vision/submission/check_test_status.py $TRIGGER_SHA )" echo "::set-output name=TEST_RESULTS::$test_results"