We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afcc326 commit abb012aCopy full SHA for abb012a
entrypoint.sh
@@ -39,10 +39,10 @@ process_input_options() {
39
value=$(echo "$line" | cut -d'=' -f2-)
40
41
# Check if the argument is --review_scope, --exclude_files, or --exclude_branches and remove spaces
42
- if [[ "$key" == "--review_scope" ]]; then
+ if [[ "$key" == "--review_scope" || "$key" == "--static_analysis_tool" ]]; then
43
value=$(remove_spaces "$value")
44
value=$(to_lowercase "$value")
45
- elif [[ "$key" == "--exclude_files" || "$key" == "--exclude_branches" || "$key" == "--static_analysis_tool" ]]; then
+ elif [[ "$key" == "--exclude_files" || "$key" == "--exclude_branches" ]]; then
46
47
fi
48
0 commit comments