Skip to content

Commit

Permalink
feat: skip annotations if the inputs.token is empty (#2010)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Aug 21, 2024
1 parent 6a60331 commit 2c870c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ runs:
INPUT_FILTER_MODE: ${{ inputs.filter_mode }}
INPUT_FAIL_ON_ERROR: ${{ inputs.fail_on_error }}
INPUT_REPORTER: ${{ inputs.reporter }}
INPUT_SKIP_ANNOTATIONS: ${{ inputs.skip_annotations }}
INPUT_SKIP_ANNOTATIONS: ${{ inputs.token && inputs.skip_annotations || 'true' }}

branding:
icon: check-square
Expand Down

0 comments on commit 2c870c9

Please sign in to comment.