Added support for LAVA framework including YAML files #33
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Qualcomm Organization Repolinter | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
repolinter: | |
if: github.repository == 'qualcomm-linux/qcom-linux-testkit' | |
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/qualcomm/.github/main/repolint.json" |