mirror of
				https://github.com/trympet/nextcloud-artifacts-action.git
				synced 2025-11-03 19:26:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			599 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			599 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
Object.defineProperty(exports, "__esModule", { value: true });
 | 
						|
exports.NoFileOption = void 0;
 | 
						|
var NoFileOption;
 | 
						|
(function (NoFileOption) {
 | 
						|
    /**
 | 
						|
     * Default. Output a warning but do not fail the action
 | 
						|
     */
 | 
						|
    NoFileOption["warn"] = "warn";
 | 
						|
    /**
 | 
						|
     * Fail the action with an error message
 | 
						|
     */
 | 
						|
    NoFileOption["error"] = "error";
 | 
						|
    /**
 | 
						|
     * Do not output any warnings or errors, the action does not fail
 | 
						|
     */
 | 
						|
    NoFileOption["ignore"] = "ignore";
 | 
						|
})(NoFileOption = exports.NoFileOption || (exports.NoFileOption = {}));
 | 
						|
//# sourceMappingURL=NoFileOption.js.map
 |