Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 2 into @master #63

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
07d6e4e
releasing v2
zricethezav May 30, 2022
7cdbc94
Update example.yml
zricethezav Jun 2, 2022
685504f
Update README.md
zricethezav Jun 2, 2022
3ac04cf
Merge pull request #53 from zricethezav/update-to-use-tag
zricethezav Jun 2, 2022
3302ec1
Update README.md
zricethezav Jun 2, 2022
3a684fb
Update README.md
zricethezav Jun 2, 2022
2c019cd
Update README.md
zricethezav Jun 3, 2022
4cf534d
Unlimited repos for personal accounts
Jun 7, 2022
2ec255a
* Added a test action that always runs the latest code on a
Jun 7, 2022
aadbe6b
* Added newline to end of file
Jun 7, 2022
c836fd4
Merge pull request #54 from zricethezav/feature/unlimited-repos-for-p…
zricethezav Jun 7, 2022
9cfc412
Update action.yml
zricethezav Jun 7, 2022
2874661
Merge pull request #55 from zricethezav/zricethezav-patch-1
zricethezav Jun 7, 2022
1446256
Update README.md
zricethezav Jun 7, 2022
52bae2a
Update README.md
zricethezav Jun 7, 2022
450e5da
Update README.md
zricethezav Jun 8, 2022
976fb7b
Update example.yml
zricethezav Jun 8, 2022
5aa6ed0
Update README.md
zricethezav Jun 12, 2022
59e8ed7
Update example.yml
zricethezav Jun 13, 2022
1649c21
Announce upcoming breaking update
weineran Jun 13, 2022
23bc0f5
Merge pull request #58 from gitleaks/feature/v2/announce-upcoming-bre…
zricethezav Jun 13, 2022
20e12ee
Re-order README
weineran Jun 15, 2022
382ab32
* Moved the expandable section inside a table cell. This makes the UI…
weineran Jun 15, 2022
fd822c1
Merge pull request #59 from gitleaks/feature/reorder-readme
zricethezav Jun 15, 2022
07d732d
Better handling of GITHUB_TOKEN when not explicitly set
Jun 21, 2022
5b9a2c0
* More logging
Jun 21, 2022
9b6d1c9
* More logging
Jun 21, 2022
9612a99
* Error out if GITHUB_TOKEN is required and not defined.
Jun 21, 2022
043038a
More verbose error about breaking update
Jun 21, 2022
594109f
Merge pull request #61 from gitleaks/feature/better-handling-of-GITHU…
zricethezav Jun 21, 2022
989942d
Merge pull request #62 from gitleaks/feature/more-verbose-error-about…
zricethezav Jun 21, 2022
bdf52b4
Merge branch 'master' into readme-update-v2
zricethezav Jun 21, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/FUNDING.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright © 2022 Gitleaks LLC - All Rights Reserved.
# You may use this code under the terms of the GITLEAKS-ACTION END-USER LICENSE AGREEMENT.
# You should have received a copy of the GITLEAKS-ACTION END-USER LICENSE AGREEMENT with this file.
# If not, please visit https://gitleaks.io/COMMERCIAL-LICENSE.txt.

name: gitleaks
on: [pull_request, push, workflow_dispatch]
jobs:
scan:
name: gitleaks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}}
# examples of how to use optional configs:
# GITLEAKS_CONFIG: "configs/simple-config.toml"
# GITLEAKS_NOTIFY_USER_LIST: "@zricethezav"
20 changes: 20 additions & 0 deletions .github/workflows/gitleaks-action-HEAD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright © 2022 Gitleaks LLC - All Rights Reserved.
# You may use this code under the terms of the GITLEAKS-ACTION END-USER LICENSE AGREEMENT.
# You should have received a copy of the GITLEAKS-ACTION END-USER LICENSE AGREEMENT with this file.
# If not, please visit https://github.com/gitleaks/gitleaks-action/blob/main/COMMERCIAL-LICENSE.txt.

# CAUTION: This is for testing purposes.
name: gitleaks-action-HEAD
on: [pull_request, workflow_dispatch]
jobs:
scan:
name: gitleaks-action-HEAD
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./ # Runs the action that's in the root directory of the repo checked out above. i.e. This action itself.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}}
15 changes: 0 additions & 15 deletions .github/workflows/gitleaks.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
__pycache__/
node_modules
106 changes: 0 additions & 106 deletions .gitleaks.toml

This file was deleted.

Loading