mirror of
https://github.com/actions/stale.git
synced 2026-08-22 16:43:25 +01:00
Use cache instead of artifacts
This commit is contained in:
4
src/interfaces/state/state-storage.ts
Normal file
4
src/interfaces/state/state-storage.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface IStateStorage {
|
||||
save(serializedState: string): Promise<void>;
|
||||
restore(): Promise<string>;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
import {IIssue} from './issue';
|
||||
import {IIssue} from '../issue';
|
||||
|
||||
export interface IState {
|
||||
isIssueProcessed(issue: IIssue): boolean;
|
||||
Reference in New Issue
Block a user