generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
52 lines (49 loc) · 2.36 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
name: .Net Outdated
description: Check outdated .NET packages
author: Gavan Lamb
branding:
icon: 'arrow-up-circle'
color: 'orange'
inputs:
add-pr-comment:
description: A flag to indicate whether to add a comment to the associated PR with a report of the outdated packages. If this is enabled and the action is executed for a non-pull-request build then the comment will not be added.
required: false
pr-comment-name:
description: A unique suffix for the pull-request comment for the current run.
required: false
add-check-run:
description: A flag to indicate whether to add a check run, to the action, containing a report of the outdated packages.
required: false
fail-check-run-if-contains-outdated:
description: A flag to indicate whether the check run should fail if there are any direct dependencies that are out of date. In order for this to work the check run needs to be enabled by setting `add-check-run` to be true.
required: false
check-run-name:
description: A unique name for the check run tab.
required: false
include-transitive-dependencies:
description: A flag to indicate whether to include transitive and top-level packages.
required: false
include-prerelease-dependencies:
description: A flag to indicate whether to include prerelease packages as the target.
required: false
include-highest-minor-only:
description: A flag to indicate whether to consider only the packages with a matching major version number when searching for newer packages.
required: false
include-highest-patch-only:
description: A flag to indicate whether to consider only the packages with a matching major and minor version numbers when searching for newer packages.
required: false
nuget-sources:
description: The NuGet sources to use when searching for newer packages. To specify more than one use a comma separated value.
required: false
nuget-config-file-path:
description: The path to the NuGet config file to use.
required: false
frameworks:
description: The framework or frameworks to run the command for. To specify more than one use a comma separated value.
required: false
target:
description: The project or solution file to target. If a file is not specified, the command will search the current directory for one.
required: false
runs:
using: node20
main: dist/index.js