mirror of
https://github.com/actions/stale.git
synced 2025-12-14 22:23:57 +00:00
Use cache instead of artifacts
This commit is contained in:
9
src/interfaces/state/state.ts
Normal file
9
src/interfaces/state/state.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import {IIssue} from '../issue';
|
||||
|
||||
export interface IState {
|
||||
isIssueProcessed(issue: IIssue): boolean;
|
||||
addIssueToProcessed(issue: IIssue): void;
|
||||
reset(): void;
|
||||
persist(): Promise<void>;
|
||||
rehydrate(): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user