fix(ci): repair workflows that are not valid YAML and have never run #115
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
| # SPDX-License-Identifier: MPL-2.0 | |
| # Calls the estate's shared secret scanner (gitleaks + rust-secrets + | |
| # shell-secrets). Replaces an inline trufflehog job: trufflehog was retired | |
| # estate-wide as redundant, and this repo had no other leak scanning, so the | |
| # scanner is UPGRADED here rather than removed. | |
| # | |
| # `secrets: inherit` is REQUIRED — without it the gitleaks action's inner | |
| # secrets.GITHUB_TOKEN is empty and the scan silently degrades. | |
| name: 'Secret Scanner' | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| scan: | |
| uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@bd0df9ead7faf0cdfe0e13e7966d91e28d0101d4 | |
| secrets: inherit |