Skip to content

Commit

Permalink
hotfix(infra-meeting-release): fix when no assignee
Browse files Browse the repository at this point in the history
  • Loading branch information
lemeurherve authored Jan 16, 2024
1 parent 09645b9 commit 55bc60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/infra-meeting-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
if (issues.length > 0) {
for (const issue of issues) {
if ((issuesState == 'open') || ((issuesState == 'closed') && (issue.state_reason == closeReason))){
const assigned = issues.assignees.join(', ')
const assigned = issues.assignees ? issues.assignees.join(', ') : 'unassigned'
markdown = markdown.concat("\r\n").concat(` * [${issue.title}](${issue.html_url}) (${assigned})`)
}
}
Expand Down

0 comments on commit 55bc60a

Please sign in to comment.