Skip to content

Commit

Permalink
chore(benchmarks): add missing space to if condition (#4841)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlf committed May 3, 2022
1 parent 4e994c5 commit 9ed00dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ed00dc

Please sign in to comment.