adding missing flags

This commit is contained in:
rafaela-soares
2022-09-23 12:31:03 +01:00
parent ec3c0bce7e
commit 191cfcba54
3 changed files with 15 additions and 3 deletions

View File

@ -54,6 +54,9 @@ inputs:
exclude_severities:
description: "exclude results by providing the severity of a result"
required: false
exclude_gitignore:
description: "disables the exclusion of paths specified within .gitignore file"
required: false
output_formats:
description: "formats in which the results report will be exported (json, sarif)"
required: false
@ -90,6 +93,9 @@ inputs:
bom:
description: "include bill of materials (BoM) in results output"
required: false
cloud_provider:
description: "list of cloud providers to scan (alicloud, aws, azure, gcp)"
required: false
branding:
icon: "shield"
color: "green"
@ -117,6 +123,7 @@ runs:
- ${{ inputs.exclude_categories }}
- ${{ inputs.exclude_results }}
- ${{ inputs.exclude_severities }}
- ${{ inputs.exclude_gitignore}}
- ${{ inputs.output_formats }}
- ${{ inputs.output_path }}
- ${{ inputs.payload_path }}
@ -128,3 +135,4 @@ runs:
- ${{ inputs.disable_full_descriptions }}
- ${{ inputs.libraries_path }}
- ${{ inputs.secrets_regexes_path}}
- ${{ inputs.cloud_provider}}