Skip to content

Commit

Permalink
Fix workflow syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
pavetok committed Sep 20, 2023
1 parent 879137f commit 6644261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/solution-beyond-doubt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
name: Stack reporting
timeout-minutes: 5
needs: [stack-packaging]
if: ${{ !cancelled() && (jobs.stack-testing.result == 'success' || jobs.stack-testing.result == 'failure') }}
if: ${{ !cancelled() && (needs.stack-packaging.result == 'success' || needs.stack-packaging.result == 'failure') }}
runs-on: ubuntu-22.04
permissions:
checks: write
Expand Down

0 comments on commit 6644261

Please sign in to comment.