We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2275158 + 736fda2 commit 5b8750dCopy full SHA for 5b8750d
1 file changed
src/githubHelper.ts
@@ -38,6 +38,7 @@ interface IssueImport {
38
assignee?: string;
39
created_at?: string;
40
updated_at?: string;
41
+ closed_at?: string;
42
milestone?: number;
43
labels?: string[];
44
}
@@ -470,6 +471,10 @@ export class GithubHelper {
470
471
closed: issue.state === 'closed',
472
};
473
474
+ if (issue.state === 'closed') {
475
+ props.closed_at = issue.closed_at;
476
+ }
477
+
478
let assignees = this.convertAssignees(issue);
479
props.assignee = assignees.length == 1 ? assignees[0] : undefined;
480
props.milestone = this.convertMilestone(issue);
0 commit comments