Skip to content

Commit

Permalink
fixing auto issue creation
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledyoussef24 committed Jun 13, 2024
1 parent 46fce30 commit 16a53e0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/grid_client_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,12 @@ jobs:
steps.deleteall.outcome != 'success'
run: exit 1

- name: Get the day of the week
id: dayofweek
run: echo "DAY_OF_WEEK=$(date +%u)" >> $GITHUB_ENV

- name: Create GitHub Issue on Failure
if: needs.teststatus.result == 'failure' && env.DAY_OF_WEEK != '5' && env.DAY_OF_WEEK != '6'
uses: dacbd/create-issue-action@main
with:
token: ${{ github.token }}
Expand All @@ -151,7 +156,6 @@ jobs:
- Commit: ${{ github.sha }}
- Network: `${{ env.NETWORK }}`


Dynamic Single Vm: ${{ steps.dynamicsinglevm.outcome }}
Multiple Vm: ${{ steps.multiplevm.outcome }}
Kubernetes: ${{ steps.kubernetes.outcome }}
Expand All @@ -160,5 +164,4 @@ jobs:
Kvstore: ${{ steps.kvstore.outcome }}
Zdb: ${{ steps.zdb.outcome }}
Delete all contracts: ${{ steps.deleteall.outcome }}
labels: type_bug , grid_client

labels: type_bug, grid_client

0 comments on commit 16a53e0

Please sign in to comment.