Skip to content

Commit d01b89c

Browse files
committed
Fix syntax error
1 parent cc20aab commit d01b89c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/is-calypso-channel-green.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ jobs:
88
CheckCalypsoChannelStatus:
99
runs-on: ubuntu-latest
1010
steps:
11-
- run:
11+
- run: |
1212
STATUS=$(curl -s https://public-api.wordpress.com/rest/v1.1/internal/calypso-slack-channel --header "Authorization: ${{ secrets.CALYPSO_CHANNEL_STATUS_API_SECRET }}")
13-
echo $STATUS
1413
if [ "$STATUS" = "GREEN" ]; then
1514
echo "Calypso Slack channel is green."
1615
exit 0
@@ -20,4 +19,5 @@ jobs:
2019
else
2120
echo "Calypso Slack channel status is unknown."
2221
exit 1
23-
fi
22+
fi
23+
shell: bash

0 commit comments

Comments
 (0)