forked from clowne-rb/clowne
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Thinkei/gitleaks/configuration
Add gitleaks schedule workflow and precommit configuration files
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This file is generate automatically by a platform tool | ||
# You can modify the schedule but do not remove this file | ||
# Please read more at https://employmenthero.atlassian.net/l/cp/uqVVmDT0 | ||
# The Gitleaks scanning report can be found at https://docs.google.com/spreadsheets/d/1ourHVLD7Hfs4PMpOsc7kKzjg104vvcPa8OtnkvRRRcc | ||
name: gitleaks-schedule-scan | ||
|
||
on: | ||
schedule: | ||
- cron: '41 16 * * 0' | ||
workflow_dispatch: | ||
jobs: | ||
gitleaks: | ||
uses: thinkei/eh-workflows/.github/workflows/gitleaks-schedule-scan.yml@main | ||
secrets: inherit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# please read more at https://employmenthero.atlassian.net/wiki/spaces/PLAT/pages/2570453361/Gitleaks#Local-scan-setup | ||
# to make gitleaks scan your commit at local machine | ||
repos: | ||
- repo: https://github.com/gitleaks/gitleaks | ||
rev: v8.17.0 | ||
hooks: | ||
- id: gitleaks-docker |