mirror of
https://github.com/actions/upload-artifact.git
synced 2025-04-18 14:34:44 +02:00
16 lines
293 B
TypeScript
16 lines
293 B
TypeScript
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'
|
|
}
|