mirror of
https://github.com/actions/cache.git
synced 2025-04-22 03:56:45 +00:00
22 lines
397 B
TypeScript
22 lines
397 B
TypeScript
export enum Inputs {
|
|
Key = "key",
|
|
Path = "path",
|
|
RestoreKeys = "restore-keys",
|
|
RestoreOnly = "restore-only",
|
|
SaveOnly = "save-only"
|
|
}
|
|
|
|
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"
|
|
}
|