cache/src/constants.ts

21 lines
335 B
TypeScript
Raw Normal View History

2019-11-12 23:01:15 +01:00
export enum Inputs {
Key = "key",
Path = "path",
RestoreKeys = "restore-keys"
2019-10-30 19:48:49 +01:00
}
2019-11-12 23:01:15 +01:00
export enum Outputs {
CacheHit = "cache-hit"
2019-10-30 19:48:49 +01:00
}
2019-11-12 23:01:15 +01:00
export enum State {
CacheKey = "CACHE_KEY",
CacheResult = "CACHE_RESULT"
2019-10-30 19:48:49 +01:00
}
export enum Events {
Key = "GITHUB_EVENT_NAME",
Push = "push",
PullRequest = "pull_request"
}