mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 07:08:10 -05:00
21 lines
454 B
YAML
21 lines
454 B
YAML
name: Gitleaks Scan
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
gitleaks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install gitleaks
|
|
uses: gitleaks/gitleaks-action@v2.3.9
|
|
with:
|
|
config-path: gitleaks-override.toml
|
|
fail: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
|