From ff0713505b6a83a85d76d2316e24c11103c9cf5c Mon Sep 17 00:00:00 2001 From: almouse Date: Tue, 11 Jul 2023 23:10:29 +0000 Subject: [PATCH] Delete constants.ts --- constants.ts | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 constants.ts diff --git a/constants.ts b/constants.ts deleted file mode 100644 index 9d64a61..0000000 --- a/constants.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* eslint-disable no-unused-vars */ -export enum Inputs { - Name = 'name', - Path = 'path', - IfNoFilesFound = 'if-no-files-found', - RetentionDays = 'retention-days' -} - -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' -}