Skip to content

Commit a5750fa

Browse files
committed
fix: fix --notify-pre-release
1 parent 5dd6614 commit a5750fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/security-announcement.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default class SecurityAnnouncement {
5353
};
5454

5555
const { title, content } = this.createPreleaseAnnouncementIssue(releaseDate, 'build');
56-
await this.createIssue(title, content, repository);
56+
await createIssue(title, content, repository, { cli: this.cli, req: this.req });
5757
}
5858

5959
createPreleaseAnnouncementIssue(releaseDate, team) {
@@ -71,6 +71,6 @@ export default class SecurityAnnouncement {
7171
};
7272

7373
const { title, content } = this.createPreleaseAnnouncementIssue(releaseDate, 'docker');
74-
await createIssue(title, content, repository, { cli: this.cli, repository: this.repository });
74+
await createIssue(title, content, repository, { cli: this.cli, req: this.req });
7575
}
7676
}

0 commit comments

Comments
 (0)