homeserver/.gitea/workflows/gitleaks.yaml
Michael Grote 2a60e3bd77
All checks were successful
ansible-lint / ansible-lint (pull_request) Successful in 52s
gitleaks / gitleaks (pull_request) Successful in 6s
dd
2024-08-22 22:05:02 +02:00

25 lines
581 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 }}
# ff