Skip to content

.github/workflows/qlty.yml #67

.github/workflows/qlty.yml

.github/workflows/qlty.yml #67

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / .github/workflows/qlty.yml

Invalid workflow file

error parsing called workflow ".github/workflows/qlty.yml" -> "ByronWilliamsCPA/.github/.github/workflows/python-qlty-gate.yml@040026ab682aa4b9ef491750d62cdd1592cdb659" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
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