Skip deleting the branch in the upstream of a forkerd repo

This commit is contained in:
Sergey Dolin
2023-01-24 07:40:23 +00:00
parent b1e5ead0b2
commit dad3c0f9e0
2 changed files with 34 additions and 16 deletions

View File

@@ -2,6 +2,9 @@ export interface IPullRequest {
number: number;
head: {
ref: string;
repo: {
full_name: string;
} | null;
};
draft?: boolean;
}