chore: Update active projects status for all 67 initiatives (2026-08-21) #1508
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
| name: gitleaks | |
| on: | |
| pull_request: | |
| branches: [develop, main] | |
| workflow_dispatch: | |
| inputs: | |
| full-history: | |
| description: Scan the full git history. | |
| type: boolean | |
| default: false | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: gitleaks-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| scan: | |
| uses: ./.github/workflows/gitleaks-reusable.yml | |
| permissions: | |
| contents: read | |
| with: | |
| full-history: ${{ github.event_name == 'workflow_dispatch' && inputs.full-history || false }} |