feat(input): allow to disable annotations
This commit is contained in:
@ -6,6 +6,10 @@ inputs:
|
||||
description: "The GITHUB_TOKEN for the current workflow run"
|
||||
required: false
|
||||
default: ${{github.token}}
|
||||
disable_annotations:
|
||||
required: false
|
||||
default: "false"
|
||||
description: "Disable annotations report"
|
||||
enable_comments:
|
||||
required: false
|
||||
default: "false"
|
||||
@ -105,6 +109,7 @@ runs:
|
||||
env:
|
||||
INPUT_TOKEN: ${{ inputs.token }}
|
||||
INPUT_OUTPUT_PATH: ${{ inputs.output_path }}
|
||||
INPUT_DISABLE_ANNOTATIONS: ${{ inputs.disable_annotations }}
|
||||
INPUT_ENABLE_COMMENTS: ${{ inputs.enable_comments }}
|
||||
INPUT_COMMENTS_WITH_QUERIES: ${{ inputs.comments_with_queries }}
|
||||
INPUT_EXCLUDED_COLUMNS_FOR_COMMENTS_WITH_QUERIES: ${{ inputs.excluded_column_for_comments_with_queries }}
|
||||
|
Reference in New Issue
Block a user