This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
Secret Scanning #1
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: Secret Scanning | |
on: | |
workflow_dispatch: | |
jobs: | |
# Typically here will come the jobs that build a docker image and push it to DockerHub | |
secret-scanning: | |
name: Trigger Secret Scanning Workflow | |
uses: scribe-public/reusable-workflows/.github/workflows/secret-scanning.yaml@main | |
with: | |
scribe_product_name: "scribe-platform" | |
scribe_product_version: "dev" | |
exit_code: 0 # Modify if you want the check to fail before the attestation | |
secrets: | |
SCRIBE_TOKEN: ${{ secrets.SCRIBE_DOGFOODING }} | |
DOGFOODING_POLICY_ACCESS: ${{ secrets.DOGFOODING_POLICY_ACCESS }} | |