Skip to content

fix(ci): repair workflows that are not valid YAML and have never run #115

fix(ci): repair workflows that are not valid YAML and have never run

fix(ci): repair workflows that are not valid YAML and have never run #115

Workflow file for this run

# 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