-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
31 lines (31 loc) · 1.17 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
name: 'nuget update checker'
description: 'nuget new package version checker'
author: 'MeilCli'
branding:
icon: arrow-up
color: blue
inputs:
project_or_solution_files:
description: 'target project or solution files'
config:
description: 'The NuGet sources to use when searching for newer packages'
source:
description: 'The NuGet sources to use when searching for newer packages'
frameworks:
description: 'Displays only the packages applicable for the specified target framework'
highest_minor:
description: 'Considers only the packages with a matching major version number when searching for newer packages'
highest_patch:
description: 'Considers only the packages with a matching major and minor version numbers when searching for newer packages'
include_prerelease:
description: 'Considers packages with prerelease versions when searching for newer packages'
outputs:
has_nuget_update:
description: 'has new package version information'
nuget_update_text:
description: 'new package version information text'
nuget_update_json:
description: 'new package version information json'
runs:
using: 'node20'
main: 'dist/index.js'