mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 04:44:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			335 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			335 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export enum Inputs {
 | 
						|
    Key = "key",
 | 
						|
    Path = "path",
 | 
						|
    RestoreKeys = "restore-keys"
 | 
						|
}
 | 
						|
 | 
						|
export enum Outputs {
 | 
						|
    CacheHit = "cache-hit"
 | 
						|
}
 | 
						|
 | 
						|
export enum State {
 | 
						|
    CacheKey = "CACHE_KEY",
 | 
						|
    CacheResult = "CACHE_RESULT"
 | 
						|
}
 | 
						|
 | 
						|
export enum Events {
 | 
						|
    Key = "GITHUB_EVENT_NAME",
 | 
						|
    Push = "push",
 | 
						|
    PullRequest = "pull_request"
 | 
						|
}
 |