mirror of
https://gitea.com/seepine/hash-files.git
synced 2025-09-10 02:38:48 +08:00
13 lines
450 B
TypeScript
13 lines
450 B
TypeScript
/* eslint-disable no-shadow */
|
|
export enum Inputs {
|
|
Workdir = 'workdir', // Input for cache, restore, save action
|
|
Patterns = 'patterns', // Input for cache, restore, save action
|
|
Gitignore = 'gitignore', // Input for cache, restore action
|
|
IgnoreFiles = 'ignoreFiles' // Input for cache, save action
|
|
}
|
|
|
|
export enum Outputs {
|
|
Hash = 'hash', // Output from cache, restore action
|
|
MatchedFiles = 'matched-files' // Output from restore action
|
|
}
|