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 }}