Skip to content

ci: update workflow file #14

ci: update workflow file

ci: update workflow file #14

Workflow file for this run

name: Scan Secret Leaks
on:
pull_request:
push:
workflow_dispatch:
schedule:
- cron: "0 10 * * *" # run once a day at 6 AM (philippine standard time)
jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}