cache/src/constants.ts

26 lines
475 B
TypeScript
Raw Normal View History

2019-11-12 17:01:15 -05:00
export enum Inputs {
Key = "key",
Path = "path",
2020-10-02 10:59:55 -04:00
RestoreKeys = "restore-keys",
UploadChunkSize = "upload-chunk-size"
2019-10-30 14:48:49 -04:00
}
2019-11-12 17:01:15 -05:00
export enum Outputs {
2022-12-08 12:39:12 -05:00
CacheHit = "cache-hit",
Key = "key",
MatchedKey = "matched-key"
2019-10-30 14:48:49 -04:00
}
2019-11-12 17:01:15 -05:00
export enum State {
CachePrimaryKey = "CACHE_KEY",
CacheMatchedKey = "CACHE_RESULT"
2019-10-30 14:48:49 -04:00
}
export enum Events {
Key = "GITHUB_EVENT_NAME",
Push = "push",
PullRequest = "pull_request"
}
2020-04-17 15:46:46 -04:00
export const RefKey = "GITHUB_REF";