mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-28 05:36:08 +02:00
17 lines
292 B
TypeScript
17 lines
292 B
TypeScript
export enum NoFileOption {
|
|
/**
|
|
* 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'
|
|
}
|