mirror of
https://gitea.com/actions/stale.git
synced 2026-07-19 20:14:11 +00:00
a88f7b30b9
* Update github package * Update dist * Use @actions/github@5.0.1 * Cleanup * More cleanup
8 lines
103 B
TypeScript
8 lines
103 B
TypeScript
export interface IPullRequest {
|
|
number: number;
|
|
head: {
|
|
ref: string;
|
|
};
|
|
draft?: boolean;
|
|
}
|