fix(manifest): attach ModelHarnessManifest on every mode's result #56
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: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| gitleaks: | |
| name: "gitleaks" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install gitleaks v8.30.1 | |
| run: | | |
| wget -q https://github.com/gitleaks/gitleaks/releases/download/v8.30.1/gitleaks_8.30.1_linux_x64.tar.gz | |
| tar -xzf gitleaks_8.30.1_linux_x64.tar.gz gitleaks | |
| chmod +x gitleaks | |
| - name: Scan for secrets | |
| run: ./gitleaks detect --source . --exit-code 1 |