From 5a1f13db560349eabe4e62512aa47c43bb7f1ce8 Mon Sep 17 00:00:00 2001 From: Shiraz Hashim Date: Wed, 14 May 2025 17:39:29 +0530 Subject: [PATCH 1/2] Update License to BSD-3-Clause-Clear Signed-off-by: Shiraz Hashim --- LICENSE | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c0a4979 --- /dev/null +++ b/LICENSE @@ -0,0 +1,3 @@ +Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries. + +SPDX-License-Identifier: BSD-3-Clause-Clear From b67e36cd2ca5d21e84b676509c586e7b4ec9799b Mon Sep 17 00:00:00 2001 From: nbobbaqcom Date: Wed, 21 May 2025 11:33:54 +0530 Subject: [PATCH 2/2] Create qualcomm-linux-organization-repolinter.yml Signed-off-by: nbobbaqcom --- ...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 0000000..ebf37e1 --- /dev/null +++ b/.github/workflows/qualcomm-linux-organization-repolinter.yml @@ -0,0 +1,30 @@ +name: Qualcomm Linux Organization Repolinter + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +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" +