Skip to content

Commit

Permalink
chore: improve infra meeting notes markdown output (#3909)
Browse files Browse the repository at this point in the history
* add comments around backlog issues section

* add issue assignee(s) to the markdown output
  • Loading branch information
lemeurherve authored Jan 16, 2024
1 parent cb258d7 commit 09645b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/infra-meeting-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ jobs:
if (issues.length > 0) {
for (const issue of issues) {
if ((issuesState == 'open') || ((issuesState == 'closed') && (issue.state_reason == closeReason))){
markdown = markdown.concat("\r\n").concat(` * [${issue.title}](${issue.html_url})`)
const assigned = issues.assignees.join(', ')
markdown = markdown.concat("\r\n").concat(` * [${issue.title}](${issue.html_url}) (${assigned})`)
}
}
}
Expand Down Expand Up @@ -93,7 +94,9 @@ jobs:
${wip}
<!--
${next}
-->
</code></pre>
<details><summary>Preview:</summary>
Expand Down

0 comments on commit 09645b9

Please sign in to comment.