1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-20 03:46:17 +02:00
cache/src/constants.ts

23 lines
397 B
TypeScript
Raw Normal View History

2019-11-12 17:01:15 -05:00
export enum Inputs {
Key = "key",
Path = "path",
RestoreKeys = "restore-keys",
2020-02-01 13:53:22 -06:00
RestoreOnly = "restore-only",
SaveOnly = "save-only"
2019-10-30 14:48:49 -04:00
}
2019-11-12 17:01:15 -05:00
export enum Outputs {
CacheHit = "cache-hit"
2019-10-30 14:48:49 -04:00
}
2019-11-12 17:01:15 -05:00
export enum State {
CacheKey = "CACHE_KEY",
CacheResult = "CACHE_RESULT"
2019-10-30 14:48:49 -04:00
}
export enum Events {
Key = "GITHUB_EVENT_NAME",
Push = "push",
PullRequest = "pull_request"
}