mirror of
https://github.com/actions/stale.git
synced 2025-12-28 11:08:18 +00:00
* Add `only-issue-types` Option to Filter Issues by Type * white-space fix in readme table Co-authored-by: andig <cpuidle@gmail.com> --------- Co-authored-by: andig <cpuidle@gmail.com>
22 lines
592 B
TypeScript
22 lines
592 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;
|
|
draft: boolean;
|
|
labels: ILabel[];
|
|
pull_request?: object | null;
|
|
state: string;
|
|
locked: boolean;
|
|
milestone?: IMilestone | null;
|
|
assignees?: Assignee[] | null;
|
|
issue_type?: string;
|
|
}
|
|
|
|
export type OctokitIssue = components['schemas']['issue'];
|