Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sophialittlejohn committed Apr 5, 2024
1 parent 74aa3b9 commit e2ad8ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
"https://api.github.com/repos/${{ github.repository }}/actions/runs")
echo $response
status=$(echo $response | jq -r '.workflow_runs[] | select(.name=="Centrifuge App") | .status')
if [$count -eq 10]; then
if [ $count -eq 10 ]; then
echo "Workflow not completed in 100 minutes, exiting..."
exit 1
fi
Expand Down

0 comments on commit e2ad8ae

Please sign in to comment.