mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2026-07-13 11:51:40 +00:00
8870cfbcd4
Relates: #21
19 lines
317 B
TypeScript
19 lines
317 B
TypeScript
export enum Inputs {
|
|
Key = "key",
|
|
Path = "path",
|
|
RestoreKeys = "restore-keys",
|
|
}
|
|
|
|
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"
|