We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 126dd9f commit 736fda2Copy full SHA for 736fda2
1 file changed
src/githubHelper.ts
@@ -36,6 +36,7 @@ interface IssueImport {
36
assignee?: string;
37
created_at?: string;
38
updated_at?: string;
39
+ closed_at?: string;
40
milestone?: number;
41
labels?: string[];
42
}
@@ -462,6 +463,10 @@ export class GithubHelper {
462
463
closed: issue.state === 'closed',
464
};
465
466
+ if (issue.state === 'closed') {
467
+ props.closed_at = issue.closed_at;
468
+ }
469
+
470
let assignees = this.convertAssignees(issue);
471
props.assignee = assignees.length == 1 ? assignees[0] : undefined;
472
props.milestone = this.convertMilestone(issue);
0 commit comments