From 79ade464a5814519b412ca326410f0d97d489ae9 Mon Sep 17 00:00:00 2001 From: Jorropo Date: Fri, 24 Jul 2026 09:38:18 +0200 Subject: [PATCH] lint: clean up pr_tests workflow lint findings (#11169) Suppress checkov/CKV_GHA_7 (the workflow_dispatch reason input is a free-text run label that never reaches the build) and drop the redundant quotes yamllint flags on the description/default/name scalars. --- .github/workflows/pr_tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr_tests.yml b/.github/workflows/pr_tests.yml index 7d910154c..e21d2f857 100644 --- a/.github/workflows/pr_tests.yml +++ b/.github/workflows/pr_tests.yml @@ -4,10 +4,11 @@ name: Tests on: workflow_dispatch: inputs: + # trunk-ignore(checkov/CKV_GHA_7): the reason input is a free-text run label, never fed into the build reason: - description: "Reason for manual test run" + description: Reason for manual test run required: false - default: "Manual test execution" + default: Manual test execution concurrency: group: tests-${{ github.head_ref || github.run_id }} @@ -21,7 +22,7 @@ permissions: jobs: native-tests: - name: "๐Ÿงช Native Tests" + name: ๐Ÿงช Native Tests if: github.repository == 'meshtastic/firmware' uses: ./.github/workflows/test_native.yml permissions: @@ -30,7 +31,7 @@ jobs: checks: write test-summary: - name: "๐Ÿ“Š Test Results" + name: ๐Ÿ“Š Test Results runs-on: ubuntu-latest needs: [native-tests] if: always()