From e669ac82e9f6c889e407251345bae87d6c3a6d2b Mon Sep 17 00:00:00 2001 From: Nageswara Rao Bobba Date: Wed, 4 Jun 2025 08:58:52 +0530 Subject: [PATCH 1/2] Create qualcomm-linux-organization-repolinter.yml (#6) Signed-off-by: Nageswara Rao Bobba --- ...qualcomm-linux-organization-repolinter.yml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/qualcomm-linux-organization-repolinter.yml diff --git a/.github/workflows/qualcomm-linux-organization-repolinter.yml b/.github/workflows/qualcomm-linux-organization-repolinter.yml new file mode 100644 index 00000000..651c3ebc --- /dev/null +++ b/.github/workflows/qualcomm-linux-organization-repolinter.yml @@ -0,0 +1,30 @@ +name: Qualcomm Linux Organization Repolinter + +on: + push: + branches: [ "gfx-kernel.le.0.0" ] + pull_request: + branches: [ "gfx-kernel.le.0.0" ] + +jobs: + repolinter: + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + - name: Verify repolinter config file is present + id: check_files + uses: andstor/file-existence-action@v3 + with: + files: "repolint.json" + - name: Run Repolinter with local repolint.json + if: steps.check_files.outputs.files_exists == 'true' + uses: todogroup/repolinter-action@v1 + with: + config_file: "repolint.json" + - name: Run Repolinter with default ruleset + if: steps.check_files.outputs.files_exists == 'false' + uses: todogroup/repolinter-action@v1 + with: + config_url: "https://raw.githubusercontent.com/quic/.github/main/repolint.json" + From a346f546f52582cdb8cb7e77d3528ab66129e3e4 Mon Sep 17 00:00:00 2001 From: Nageswara Rao Bobba Date: Thu, 5 Jun 2025 11:52:37 +0530 Subject: [PATCH 2/2] Create preflight-checker-workflow.yml Signed-off-by: Nageswara Rao Bobba --- .../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..13b22623 --- /dev/null +++ b/.github/workflows/preflight-checker-workflow.yml @@ -0,0 +1,19 @@ +name: preflight-checkers +on: + pull_request_target: + branches: [ "gfx-kernel.le.0.0" ] + push: + branches: [ "gfx-kernel.le.0.0" ] + 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 }}