2023-01-05 21:27:11 +00:00
|
|
|
/* eslint-disable no-unused-vars */
|
2020-04-28 15:18:53 +00:00
|
|
|
export enum Inputs {
|
|
|
|
Name = 'name',
|
2020-07-31 15:27:37 +00:00
|
|
|
Path = 'path',
|
2020-08-27 17:39:36 +00:00
|
|
|
IfNoFilesFound = 'if-no-files-found',
|
2023-11-20 16:08:50 +00:00
|
|
|
RetentionDays = 'retention-days',
|
|
|
|
CompressionLevel = 'compression-level'
|
2020-04-28 15:18:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-31 15:27:37 +00:00
|
|
|
export enum NoFileOptions {
|
|
|
|
/**
|
|
|
|
* Default. Output a warning but do not fail the action
|
|
|
|
*/
|
|
|
|
warn = 'warn',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fail the action with an error message
|
|
|
|
*/
|
|
|
|
error = 'error',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do not output any warnings or errors, the action does not fail
|
|
|
|
*/
|
|
|
|
ignore = 'ignore'
|
2020-04-28 15:18:53 +00:00
|
|
|
}
|