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 ad00d0c commit f87de96Copy full SHA for f87de96
.github/actions/semgrep-action/action.yml
@@ -46,7 +46,9 @@ runs:
46
--severity=ERROR \
47
--exclude="*.html" --exclude="*.js" --exclude="*.spec.ts" \
48
$baseline_commit_arg \
49
- --${{ inputs.results_format }} > "$results_file" || true
+ --${{ inputs.results_format }} | \
50
+ jq 'to_entries | map(if .key == "results" then .value |= map(select(.extra.metadata.confidence != "LOW")) else . end) | from_entries' \
51
+ > "$results_file" || true
52
shell: bash
53
- name: "Set results file path output"
54
id: set_results_file_path_output
0 commit comments