cache/src/constants.ts

27 lines
802 B
TypeScript
Raw Normal View History

2019-11-12 23:01:15 +01:00
export enum Inputs {
2022-12-09 14:56:33 +01:00
Key = "key", // Input from cache, restore, save action
Path = "path", // Input from cache, restore, save action
RestoreKeys = "restore-keys", // Input from cache, restore action
UploadChunkSize = "upload-chunk-size", // Input from cache, save action
RestoredKey = "restored-key" // Input from save action
2019-10-30 19:48:49 +01:00
}
2019-11-12 23:01:15 +01:00
export enum Outputs {
2022-12-09 14:56:33 +01:00
CacheHit = "cache-hit", // Output from cache, restore action
InputtedKey = "inputted-key", // Output from restore action
MatchedKey = "matched-key" // Output from restore action
2019-10-30 19:48:49 +01:00
}
2019-11-12 23:01:15 +01:00
export enum State {
CachePrimaryKey = "CACHE_KEY",
CacheMatchedKey = "CACHE_RESULT"
2019-10-30 19:48:49 +01:00
}
export enum Events {
Key = "GITHUB_EVENT_NAME",
Push = "push",
PullRequest = "pull_request"
}
2020-04-17 21:46:46 +02:00
export const RefKey = "GITHUB_REF";