Skip to content

Commit

Permalink
Simplify workflow script (#3059)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored May 9, 2023
1 parent d809755 commit bef6a21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
if: always()
uses: ./.github/workflows/reusable-scheduled-job-notification.yml
with:
success: ${{ needs.analyze.result == 'success' }}
success: needs.analyze.result == 'success'
2 changes: 1 addition & 1 deletion .github/workflows/owasp-dependency-check-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
if: always()
uses: ./.github/workflows/reusable-scheduled-job-notification.yml
with:
success: ${{ needs.analyze.result == 'success' }}
success: needs.analyze.result == 'success'

0 comments on commit bef6a21

Please sign in to comment.