/
fscourge
/
cache
Обзор
Документация
Войти
/
fscourge
/
cache
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/constants.ts
28 строк
996 B
Marc Mueller
Add `lookup-only` option (#1041)
09 мар 2023, 15:30
Не верифицирован
09 мар 2023, 15:30
940f3d7
Код
Авторство
О чём код?
export enum Inputs { Key = "key", // Input for cache, restore, save action Path = "path", // Input for cache, restore, save action RestoreKeys = "restore-keys", // Input for cache, restore action UploadChunkSize = "upload-chunk-size", // Input for cache, save action EnableCrossOsArchive = "enableCrossOsArchive", // Input for cache, restore, save action FailOnCacheMiss = "fail-on-cache-miss", // Input for cache, restore action LookupOnly = "lookup-only" // Input for cache, restore action } export enum Outputs { CacheHit = "cache-hit", // Output from cache, restore action CachePrimaryKey = "cache-primary-key", // Output from restore action CacheMatchedKey = "cache-matched-key" // Output from restore action } 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";