Merge pull request #5 from janpreet/refator #31
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: Sensitive Data Check | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
gitleaks: | |
name: Gitleaks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Gitleaks | |
uses: gitleaks/gitleaks-action@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }} | |
- name: Check Gitleaks output | |
if: ${{ failure() }} | |
run: | | |
echo "Gitleaks has detected potential sensitive data in your PR." | |
echo "Please review the Gitleaks output and remove any sensitive information before merging." | |
exit 1 |