mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/cache
				synced 2025-10-31 21:11:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export enum Inputs {
 | |
|     Key = "key",
 | |
|     Path = "path",
 | |
|     RestoreKeys = "restore-keys"
 | |
| }
 | |
| 
 | |
| export enum Outputs {
 | |
|     CacheHit = "cache-hit"
 | |
| }
 | |
| 
 | |
| export enum State {
 | |
|     CachePrimaryKey = "CACHE_KEY",
 | |
|     CacheMatchedKey = "CACHE_RESULT"
 | |
| }
 | |
| 
 | |
| export enum Events {
 | |
|     Key = "GITHUB_EVENT_NAME",
 | |
|     Push = "push",
 | |
|     PullRequest = "pull_request"
 | |
| }
 | |
| 
 | |
| export const RefKey = "GITHUB_REF";
 | 
