Skip to content

Commit

Permalink
Update sast-linters.yml
Browse files Browse the repository at this point in the history
Also ignore changelog.md
  • Loading branch information
CryptoFewka authored Jun 24, 2024
1 parent 23f1c87 commit 3c99fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sast-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3c99fac

Please sign in to comment.