[ID-79]Consolidate the information, and make it accessible with a single API call #101
Workflow file for this run
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: Detect Secrets | |
on: pull_request | |
jobs: | |
detect-secrets: | |
runs-on: ubuntu-latest | |
container: python:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Install Yelp's detect secrets | |
run: | | |
apt-get update && apt-get install -y jq | |
pip install yq | |
pip install detect-secrets==$(yq -r .repos[0].rev .pre-commit-config.yaml) | |
- name: Detect potential secrets | |
run: git ls-files -z | xargs -0 detect-secrets-hook --baseline .secrets.baseline |