├── README.md └── workflow-templates ├── gitleaks.properties.json ├── gitleaks.yml └── leak.svg /README.md: -------------------------------------------------------------------------------- 1 | # Github Templates 2 | Organization-level Templates. -------------------------------------------------------------------------------- /workflow-templates/gitleaks.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gitleaks Workflow", 3 | "description": "Gitleaks at Organization level workflow template.", 4 | "iconName": "leak", 5 | "categories": [ 6 | "Security" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /workflow-templates/gitleaks.yml: -------------------------------------------------------------------------------- 1 | name: Gitleaks 2 | 3 | on: [push,pull_request] 4 | 5 | jobs: 6 | gitleaks: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v1 10 | - name: gitleaks-action 11 | uses: Nitro/gitleaks-action@master 12 | # This uses our fork of the action -------------------------------------------------------------------------------- /workflow-templates/leak.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 10 | 17 | 19 | 20 | 21 | --------------------------------------------------------------------------------