homeserver/.gitea/workflows/gitleaks.yaml
Michael Grote 728c3f3e0b
All checks were successful
ansible-lint / ansible-lint (pull_request) Successful in 51s
gitleaks / gitleaks (pull_request) Successful in 6s
ff
2024-08-22 22:04:51 +02:00

23 lines
576 B
YAML

name: gitleaks
on:
push:
branches: [ master ]
pull_request:
# https://stackoverflow.com/questions/66335225/how-to-cancel-previous-runs-in-the-pr-when-you-push-new-commitsupdate-the-curre
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
gitleaks:
#runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Gitleaks
uses: docker://zricethezav/gitleaks:v8.18.4
with:
args: detect --no-git --verbose --source ${{ github.workspace }}