From b3972df3caae4c45f83bfd1fb6d448d59701ea10 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Fri, 28 Feb 2025 11:30:07 +0000 Subject: [PATCH] workflows: Shellcheck - ignore vendor Ignore the vendor directories in our shellcheck workflow as we can't fix them. If there is a way to set this in shellcheckrc that would be better, but it doesn't seem to be implemented yet. Signed-off-by: stevenhorsman --- .github/workflows/shellcheck.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/shellcheck.yaml b/.github/workflows/shellcheck.yaml index 1f058e1393..dba153d31a 100644 --- a/.github/workflows/shellcheck.yaml +++ b/.github/workflows/shellcheck.yaml @@ -26,4 +26,5 @@ jobs: - uses: actions/checkout@v4 - name: Run ShellCheck uses: ludeeus/action-shellcheck@master - + with: + ignore_paths: ./src/runtime/vendor/**