chore(deps): Update GitHub Actions #68
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: Qlty | ||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
| schedule: | ||
| # Weekly full-codebase health scan: Monday 07:00 UTC | ||
| - cron: '0 7 * * 1' | ||
| workflow_dispatch: | ||
| permissions: read-all | ||
| concurrency: | ||
| group: qlty-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| # PR gate: diff mode, block merges that introduce medium+ severity issues. | ||
| # Check name: "qlty-gate / Qlty Gate" -- required by org docs-tier ruleset. | ||
| qlty-gate: | ||
| if: github.event_name == 'pull_request' | ||
| uses: ByronWilliamsCPA/.github/.github/workflows/python-qlty-gate.yml@040026ab682aa4b9ef491750d62cdd1592cdb659 | ||
|
Check failure on line 22 in .github/workflows/qlty.yml
|
||
| permissions: | ||
| contents: read | ||
| with: | ||
| fail-level: medium | ||
| upstream: origin/${{ github.base_ref }} | ||
| # Weekly health scan: full codebase, informational only. | ||
| # Remove no-fail once existing qlty debt is resolved. | ||
| qlty-health: | ||
| if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | ||
| uses: ByronWilliamsCPA/.github/.github/workflows/python-qlty-gate.yml@040026ab682aa4b9ef491750d62cdd1592cdb659 | ||
| permissions: | ||
| contents: read | ||
| with: | ||
| fail-level: high | ||
| check-all: true | ||
| no-fail: true | ||