refactor: prep for Turborepo #86
Workflow file for this run
This file contains hidden or 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
| # GitHub Action | |
| # description: Scan the code for secrets, etc. | |
| # author: Matt Norris <matnorri@cisco.com> | |
| name: Scan for leaks | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| gitleaks: | |
| if: github.event.pull_request.user.login != 'gveappsupport' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: gitleaks-action | |
| uses: zricethezav/gitleaks-action@master |