Skip to content

Commit

Permalink
Add support for gitleaks checking on CI (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
yz-endo committed Jun 7, 2021
1 parent 1cbab7b commit b1423ad
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Scan Secrets

on: [push,pull_request]

jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: gitleaks-action
uses: zricethezav/gitleaks-action@518e4898c0cd1cc5d9aab6627a2eabd46e81d8da

0 comments on commit b1423ad

Please sign in to comment.