2020-04-28 15:45:21 +02:00
|
|
|
export enum Inputs {
|
|
|
|
|
Name = 'name',
|
2023-08-24 11:57:52 -04:00
|
|
|
Path = 'path',
|
|
|
|
|
GitHubToken = 'github-token',
|
|
|
|
|
Repository = 'repository',
|
2023-12-15 17:18:41 -05:00
|
|
|
RunID = 'run-id',
|
|
|
|
|
Pattern = 'pattern',
|
2025-04-17 04:47:03 +00:00
|
|
|
MergeMultiple = 'merge-multiple',
|
|
|
|
|
ArtifactIds = 'artifact-ids'
|
2020-04-28 15:45:21 +02:00
|
|
|
}
|
2023-08-24 11:57:52 -04:00
|
|
|
|
2020-07-15 12:09:31 +02:00
|
|
|
export enum Outputs {
|
|
|
|
|
DownloadPath = 'download-path'
|
|
|
|
|
}
|