Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
28 changes: 28 additions & 0 deletions .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: gitleaks-docker

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run gitleaks-docker
run: |
docker pull zricethezav/gitleaks:latest
docker run \
-v ${{ github.workspace }}:/repo \
-e GITLEAKS_CONFIG=/repo/.github/gitleaks.toml \
zricethezav/gitleaks:latest \
detect --source=/repo --verbose --exit-code=0 -f=json > gitleaks-results.json

- name: Display Gitleaks JSON Output
run: |
echo "Displaying Gitleaks results..."
cat gitleaks-results.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Access at:
```
https://<your-databricks-host>/sql/dashboards/v3/<dashboard-id>
```

#
## Support

For issues and feature requests, please contact your Skyflow representative or visit docs.skyflow.com.
Expand Down