We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1bd7c1 commit 82a82daCopy full SHA for 82a82da
src/scripts/scrumHelper.js
@@ -579,7 +579,7 @@ function allIncluded(outputTarget = 'email') {
579
}
580
581
582
- function processGithubData(data) {
+ async function processGithubData(data) {
583
log('Processing Github data');
584
githubIssuesData = data.githubIssuesData;
585
githubPrsReviewData = data.githubPrsReviewData;
@@ -600,8 +600,10 @@ function allIncluded(outputTarget = 'email') {
600
if (!githubCache.subject && scrumSubject) {
601
scrumSubjectLoaded();
602
603
- writeGithubIssuesPrs();
604
- writeGithubPrsReviews();
+ await Promise.all([
+ writeGithubIssuesPrs(),
605
+ writeGithubPrsReviews(),
606
+ ])
607
608
609
function formatDate(dateString) {
0 commit comments