generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
62 lines (62 loc) · 1.94 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
name: '.NET nanoFramework dependencies updater'
description: 'Updates .NET nanoFramework NuGet packages and nuspec files on .NET nanoFramework solutions'
author: '.NET nanoFramework Contributors'
branding:
icon: git-merge
color: purple
inputs:
workingDirectory:
required: false
description: 'Repo root|Working directory. Use when targeting Solution file(s) other than the repository root.'
default: '${{ github.workspace }}'
stablePackages:
required: false
description: 'Use stable NuGet package versions.'
default: 'true'
previewPackages:
required: false
description: 'Use preview NuGet package versions.'
default: 'false'
solutionsToCheck:
required: false
description: 'List of Solution(s) to update in the `workingDirectory` directory.'
default: ''
reposToUpdate:
required: false
description: 'List of repository(es) to update.'
default: ''
exclusionList:
required: false
description: 'List of solution names to exclude from the update. Comma separated, name only.'
default: ''
branchToPr:
required: false
description: 'Branch name to submit PR with update. Default is `main`.'
default: 'main'
gitHubUser:
required: false
description: 'Git hub user for creating PR.'
default: ''
gitHubEmail:
required: false
description: 'Git hub user email for creating PR.'
default: ''
gitHubAuth:
required: false
description: 'GitHub Personal Access Token for creating PR.'
default: ''
repoOwner:
required: false
description: 'Repository owner on git hub. https://github.com/[repoOwner]/repositoryName'
default: ''
nugetConfig:
required: false
description: 'Path to nuget.config file to use for NuGet operations.'
default: ''
useTokenForClone:
required: false
description: 'Set to true if you trying to update private GitHub repository.'
default: ''
runs:
using: 'node20'
main: 'dist/index.js'