From 3c99fac21fe9d7b1ab4d1019f574068fe20c424a Mon Sep 17 00:00:00 2001 From: Christopher Fuka <97121270+CryptoFewka@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:59:54 -0500 Subject: [PATCH] Update sast-linters.yml Also ignore changelog.md --- .github/workflows/sast-linters.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sast-linters.yml b/.github/workflows/sast-linters.yml index 3e094fea84..79b308d2df 100644 --- a/.github/workflows/sast-linters.yml +++ b/.github/workflows/sast-linters.yml @@ -105,7 +105,7 @@ jobs: for file in ${{ steps.changed-files.outputs.all_changed_files }}; do # Skip this workflow file - if [ "$file" == ".github/workflows/sast-linters.yml" ]; then + if [ "$file" == ".github/workflows/sast-linters.yml" ] || [ "$file" == "changelog.md" ]; then echo "Skipping nosec check for $file" continue fi