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.
2 parents f0ac1e1 + d1fddc4 commit 3334277Copy full SHA for 3334277
.github/workflows/grid_client_nightly.yml
@@ -131,15 +131,11 @@ jobs:
131
steps.kubernetesqsfs.outcome != 'success' ||
132
steps.kvstore.outcome != 'success' ||
133
steps.zdb.outcome != 'success' ||
134
- steps.deleteall.outcome != 'success'
+ steps.deleteall.outcome != 'success'
135
run: exit 1
136
137
- - name: Get the day of the week
138
- id: dayofweek
139
- run: echo "DAY_OF_WEEK=$(date +%u)" >> $GITHUB_ENV
140
-
141
- name: Create GitHub Issue on Failure
142
- if: needs.teststatus.result == 'failure' && env.DAY_OF_WEEK != '5' && env.DAY_OF_WEEK != '6'
+ if: failure() && '$(date +%u)' != '5' && '$(date +%u)' != '6'
143
uses: dacbd/create-issue-action@main
144
with:
145
token: ${{ github.token }}
0 commit comments