generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
64 lines (61 loc) · 1.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: 'gradle-dependency-diff-action'
description:
'Report the Gradle dependency differences caused by the Pull Request'
author: 'be-hase'
branding:
icon: 'heart'
color: 'red'
inputs:
tool-version:
description:
'Version of
dependency-tree-diff-version(https://github.com/JakeWharton/dependency-tree-diff).'
required: false
default: '1.2.1'
configurations:
description:
'Target dependency configurations. Multiple values can be specified,
separated by commas.'
required: false
default: 'runtimeClasspath'
post-pr-comment:
description:
'If true, posts a PR comment when there are dependency differences.'
required: false
default: 'true'
update-pr-body:
description:
'If true, updates the PR body when there are dependency differences.'
required: false
default: 'false'
assign-label:
description:
'If true, adds a PR label when there are dependency differences.'
required: false
default: 'true'
label-name:
description: 'Label name used with assign-label.'
required: false
default: 'dependencies-change'
upload-artifact:
description:
'If true, uploads the dependency differences as a text file to the actions
artifact.'
required: false
default: 'true'
token:
description: 'Token used by this action.'
required: false
default: ${{ github.token }}
custom-endpoint-url:
description:
'By default, the report is recorded in GitHub checks. If you want to send
it to a custom server, please use this option. This feature is
experimental and may change without notice.'
required: false
custom-endpoint-headers:
description: 'The header used when sending to a custom endpoint.'
required: false
runs:
using: node20
main: dist/index.js