We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8df7ea5 commit c8b32a4Copy full SHA for c8b32a4
.github/workflows/naga-health-check.yml
@@ -104,11 +104,11 @@ jobs:
104
- name: Health check summary
105
if: always()
106
run: |
107
- if [ ${{ job.status }} == 'success' ]; then
+ if [[ "${{ job.status }}" == "success" ]]; then
108
echo "✅ Health check passed for ${{ matrix.network }}"
109
- echo "Time: $(date -u +"%Y-%m-%d %H:%M:%S UTC")"
+ echo "Time: $(date -u +'%Y-%m-%d %H:%M:%S UTC')"
110
else
111
echo "❌ Health check failed for ${{ matrix.network }}"
112
113
echo "Please check the logs above for details"
114
-
+ fi
0 commit comments