Skip to content

Commit

Permalink
Merge pull request #2984 from threefoldtech/development_fixing_auto_i…
Browse files Browse the repository at this point in the history
…ssue_creation

fixing auto issue creation
  • Loading branch information
AhmedHanafy725 authored Jun 13, 2024
2 parents b50f001 + 16a53e0 commit 630da1c
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 630da1c

Please sign in to comment.