| 
									
										
										
										
											2023-01-05 16:27:11 -05:00
										 |  |  | /* eslint-disable no-unused-vars */ | 
					
						
							| 
									
										
										
										
											2020-04-28 17:18:53 +02:00
										 |  |  | export enum Inputs { | 
					
						
							|  |  |  |   Name = 'name', | 
					
						
							| 
									
										
										
										
											2020-07-31 17:27:37 +02:00
										 |  |  |   Path = 'path', | 
					
						
							| 
									
										
										
										
											2020-08-27 13:39:36 -04:00
										 |  |  |   IfNoFilesFound = 'if-no-files-found', | 
					
						
							|  |  |  |   RetentionDays = 'retention-days' | 
					
						
							| 
									
										
										
										
											2020-04-28 17:18:53 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 17:27:37 +02: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 17:18:53 +02:00
										 |  |  | } |