From 133a8b8a386809a2ea80a753bf0a2dbbc041e603 Mon Sep 17 00:00:00 2001 From: nlf Date: Tue, 3 May 2022 10:29:51 -0700 Subject: [PATCH] chore(benchmarks): add missing space to if condition --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 2e363cb3006ec..3eca93882c07a 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,7 @@ jobs: PR="${{ github.event.issue.number }}" SENDER="${{ github.event.issue.sender.login }}" ROLE=$(gh api repos/${OWNER}/${REPO}/collaborators/${SENDER}/permission -q '.permission') - if [[ "$ROLE" != "admin"]]; then + if [[ "$ROLE" != "admin" ]]; then echo "${SENDER} is ${ROLE}, not an admin, exiting" exit 0 fi