DD-41812 Fix for New results by offence details are missing in the Gr… #348
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
| name: Scanning | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| schedule: | |
| - cron: '0 4 * * 4' # Every Thursday at 04:00 | |
| workflow_dispatch: | |
| jobs: | |
| scan: | |
| name: Secrets Scanner | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: hmcts/secrets-scanner@main | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| gitleaks_license: ${{ secrets.GITLEAKS_LICENSE }} | |
| gitleaks_regex_internal_url: ${{ secrets.HMCTS_CP_GITLEAKS_REGEX_INTERNAL_URL }} |