Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
omer Tzadiki authored and omer Tzadiki committed Dec 15, 2024
1 parent 01a7613 commit a635523
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18737,14 +18737,16 @@ const getReleaseNotesFromDescriptions = (descriptionAndPrNumberArray) => {
let taskUrlsFromAllDescriptions = [];
descriptionAndPrNumberArray.map(async ({ description }) => {
try {
const { taskUrls: taskUrlsFromCurrentDescription } = await (0, asana_1.getTaskIdsAndUrlsFromPr)(description);
const { taskUrls: taskUrlsFromCurrentDescription } = (0, asana_1.getTaskIdsAndUrlsFromPr)(description);
console.log('taskUrlsFromCurrentDescription', taskUrlsFromCurrentDescription, (0, asana_1.getTaskIdsAndUrlsFromPr)(description));
taskUrlsFromAllDescriptions = [
...taskUrlsFromAllDescriptions,
...taskUrlsFromCurrentDescription,
];
}
catch (e) { }
});
console.log('taskUrlsFromAllDescriptions', taskUrlsFromAllDescriptions, descriptionAndPrNumberArray);
return `New release is being cooked 👩‍🍳, those are the asana tickets:
${taskUrlsFromAllDescriptions.join(', ')}`;
};
Expand Down

0 comments on commit a635523

Please sign in to comment.