GSOC 26 Proof of Concept: add SchemaForm component for JSON Schema to Form UI #7568
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Scan git repos (or files) for secrets using regex and entropy 🔑 | |
| name: gitLeaks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| gitleaks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: '1' | |
| submodules: recursive | |
| - name: wget | |
| shell: bash | |
| run: | | |
| wget https://raw.githubusercontent.com/ycjcl868/gitleaks/master/.gitleaks.toml | |
| - name: gitleaks-action | |
| uses: ./.github/actions/gitleaks-action |