mirror of
https://gitlab.com/components/sast.git
synced 2025-06-30 15:38:29 +02:00
Merge branch 'fix-issue-with-excluding-brakeman-and-flawfinder' into 'main'
Fix syntax used to exclude brakeman and flawfinder analyzers See merge request gitlab-components/sast!1
This commit is contained in:
commit
3cb31ba164
1 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ brakeman-sast:
|
||||||
image:
|
image:
|
||||||
name: "$[[ inputs.image_prefix ]]/brakeman:$[[ inputs.image_tag ]]"
|
name: "$[[ inputs.image_prefix ]]/brakeman:$[[ inputs.image_tag ]]"
|
||||||
rules:
|
rules:
|
||||||
- if: '"$[ inputs.excluded_analyzers ]" =~ /brakeman/'
|
- if: '"$[[ inputs.excluded_analyzers ]]" =~ /brakeman/'
|
||||||
when: never
|
when: never
|
||||||
- if: $CI_COMMIT_BRANCH
|
- if: $CI_COMMIT_BRANCH
|
||||||
exists:
|
exists:
|
||||||
|
@ -51,7 +51,7 @@ flawfinder-sast:
|
||||||
image:
|
image:
|
||||||
name: "$[[ inputs.image_prefix ]]/flawfinder:$[[ inputs.image_tag ]]"
|
name: "$[[ inputs.image_prefix ]]/flawfinder:$[[ inputs.image_tag ]]"
|
||||||
rules:
|
rules:
|
||||||
- if: '"$[ inputs.excluded_analyzes ]" =~ /flawfinder/'
|
- if: '"$[[ inputs.excluded_analyzers ]]" =~ /flawfinder/'
|
||||||
when: never
|
when: never
|
||||||
- if: $CI_COMMIT_BRANCH
|
- if: $CI_COMMIT_BRANCH
|
||||||
exists:
|
exists:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue