mirror of
https://github.com/actions/stale.git
synced 2025-12-26 10:18:17 +00:00
* Update github package * Update dist * Use @actions/github@5.0.1 * Cleanup * More cleanup
20 lines
570 B
TypeScript
20 lines
570 B
TypeScript
import {IsoDateString} from '../types/iso-date-string';
|
|
import {Assignee} from './assignee';
|
|
import {ILabel} from './label';
|
|
import {IMilestone} from './milestone';
|
|
import {components} from '@octokit/openapi-types';
|
|
export interface IIssue {
|
|
title: string;
|
|
number: number;
|
|
created_at: IsoDateString;
|
|
updated_at: IsoDateString;
|
|
labels: ILabel[];
|
|
pull_request?: Object | null;
|
|
state: string;
|
|
locked: boolean;
|
|
milestone?: IMilestone | null;
|
|
assignees?: Assignee[] | null;
|
|
}
|
|
|
|
export type OctokitIssue = components['schemas']['issue'];
|