mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-25 04:26:08 +02:00
16 lines
322 B
TypeScript
16 lines
322 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',
|
|
} |