feat: add OIDC_ALLOW_ALL_USERS
, allow all users to access, even those not in the allowed groups.
#92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bandit | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
main: | |
name: Run bandit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mdegis/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
path: "." | |
level: high | |
confidence: high | |
exit_zero: true |