What's Changed
- Feature/scheduled runs by @zricethezav in #89
- populate html_url on scheduled runs by @zricethezav in #90
You can now run scheduled runs with gitleaks-action. A scheduled gitleaks-action will scan the entire history of a repo. You can set up a scheduled run by adding schedule
to the on
entry:
on:
pull_request:
push:
workflow_dispatch:
schedule:
- cron: "0 4 * * *" # run once a day at 4 AM
Full Changelog: v2...v2.2.0