From e1c40d3bc4d5bdd759a286c64b11b2d6c8e3aa57 Mon Sep 17 00:00:00 2001 From: Sandhya Adavikolanu Date: Tue, 10 Mar 2026 00:55:28 -0700 Subject: [PATCH] Update qcom-preflight-checks.yml Upgrade to latest v2 QC Preflight Checks Also adds optional checks defaulted to false Signed-off-by: Sandhya Adavikolanu Update qcom-preflight-checks.yml Upgrade to latest QC Preflight Checks Signed-off-by: Sandhya Adavikolanu --- .github/workflows/qcom-preflight-checks.yml | 36 ++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/qcom-preflight-checks.yml b/.github/workflows/qcom-preflight-checks.yml index 0dd44ecd7..a508fe56f 100644 --- a/.github/workflows/qcom-preflight-checks.yml +++ b/.github/workflows/qcom-preflight-checks.yml @@ -1,24 +1,24 @@ -name: Qualcomm Preflight Checks +name: QC Preflight Checks + on: - pull_request_target: - branches: [ development ] + pull_request: push: - branches: [ development ] + branches: [main] workflow_dispatch: -permissions: - contents: read - security-events: write - jobs: - qcom-preflight-checks: - uses: qualcomm/qcom-reusable-workflows/.github/workflows/qcom-preflight-checks-reusable-workflow.yml@v1.1.4 + preflight: + name: Run QC Preflight Checks + uses: qualcomm/qcom-reusable-workflows/.github/workflows/reusable-qcom-preflight-checks-orchestrator.yml@v2 with: - # ✅ Preflight Checkers - repolinter: true # default: true - semgrep: true # default: true - copyright-license-detector: true # default: true - pr-check-emails: true # default: true - dependency-review: true # default: true - secrets: - SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} \ No newline at end of file + enable-semgrep-scan: true + enable-dependency-review: true + enable-repolinter-check: true + enable-copyright-license-check: true + enable-commit-email-check: true + enable-commit-msg-check: false + enable-armor-checkers: false + + permissions: + contents: read + security-events: write