mirror of
https://github.com/actions/cache.git
synced 2025-04-22 14:10:48 +00:00
25 lines
483 B
TypeScript
25 lines
483 B
TypeScript
export enum Inputs {
|
|
Key = "key",
|
|
OnlyRestore = "only-restore",
|
|
Path = "path",
|
|
Reeval = "reeval",
|
|
RestoreKeys = "restore-keys",
|
|
UploadChunkSize = "upload-chunk-size"
|
|
}
|
|
|
|
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";
|