Skip to content

Commit 82a82da

Browse files
committed
post merge changes
Signed-off-by: Vedansh Saini <[email protected]>
1 parent b1bd7c1 commit 82a82da

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/scripts/scrumHelper.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ function allIncluded(outputTarget = 'email') {
579579
}
580580
}
581581

582-
function processGithubData(data) {
582+
async function processGithubData(data) {
583583
log('Processing Github data');
584584
githubIssuesData = data.githubIssuesData;
585585
githubPrsReviewData = data.githubPrsReviewData;
@@ -600,8 +600,10 @@ function allIncluded(outputTarget = 'email') {
600600
if (!githubCache.subject && scrumSubject) {
601601
scrumSubjectLoaded();
602602
}
603-
writeGithubIssuesPrs();
604-
writeGithubPrsReviews();
603+
await Promise.all([
604+
writeGithubIssuesPrs(),
605+
writeGithubPrsReviews(),
606+
])
605607
}
606608

607609
function formatDate(dateString) {

0 commit comments

Comments
 (0)