From 9293bf88bea7e889b562532b596e503d90de7c79 Mon Sep 17 00:00:00 2001 From: Srikanth Muppandam Date: Thu, 29 May 2025 10:13:32 +0530 Subject: [PATCH] Create preflight-checker-workflow.yml New workflow suggested by the organization. Signed-off-by: Srikanth Muppandam --- .../workflows/preflight-checker-workflow.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/preflight-checker-workflow.yml diff --git a/.github/workflows/preflight-checker-workflow.yml b/.github/workflows/preflight-checker-workflow.yml new file mode 100644 index 00000000..7c3460c6 --- /dev/null +++ b/.github/workflows/preflight-checker-workflow.yml @@ -0,0 +1,19 @@ +name: preflight-checkers +on: + pull_request_target: + branches: [ "main" ] + push: + branches: [ "main" ] + workflow_dispatch: + +jobs: + checker: + uses: qualcomm-linux/qli-actions/.github/workflows/multi-checker.yml@main + with: + repolinter: true # default: true + semgrep: true # default: true + copyright-license-detector: true # default: true + pr-check-emails: true # default: true + + secrets: + SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}