-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
38 lines (38 loc) · 1.04 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Knip Reporter
description: Comment on a pull-request with Knip results
author: Alex Miller
branding:
icon: package
color: green
inputs:
token:
description: GitHub Personal Access Token for making API requests.
default: "${{ github.token }}"
required: false
command_script_name:
description: The package script that runs knip.
default: knip
required: false
comment_id:
description: ID to use when updating the PR comment.
default: "${{ github.workflow }}-knip-reporter"
required: false
annotations:
description: Annotate the project code with the knip results.
default: true
required: false
verbose:
description: Include annotated items in the comment report.
default: false
required: false
ignore_results:
description: Do not fail the action run if knip results are found.
default: false
required: false
working_directory:
description: Directory in which to run the knip action.
default: "."
required: false
runs:
using: node20
main: dist/index.mjs