We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41036ad commit f80d81eCopy full SHA for f80d81e
.github/workflows/bandit.yml
@@ -47,7 +47,7 @@ jobs:
47
- name: Bandit Scan
48
uses: shundor/python-bandit-scan@9cc5aa4a006482b8a7f91134412df6772dbda22c # v1.0
49
env:
50
- EXIT_ZERO_VAL: ${{ (github.event_name == 'pull_request') && false || true }}
+ EXIT_ZERO_VAL: ${{ (github.event_name == 'pull_request') && ${{ false }} || ${{ true }} }}
51
with: # optional arguments
52
# exit with 1 on pull request, else exit with 0 even if results found (on push to main or cron job)
53
exit_zero: env.EXIT_ZERO_VAL # optional, default is DEFAULT
0 commit comments