Skip to content

Commit

Permalink
Write summary
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-heyer committed Mar 6, 2024
1 parent 74c9494 commit f7e1bcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/automation/actions/jira-sync/jira.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ async function main() {
Added issues: **${added}**
Updated issues: **${updated}**`);

ghCore.summary.write();
}

async function loadGHIssues(issueNumber) {
Expand All @@ -100,7 +102,7 @@ async function loadGHIssues(issueNumber) {
let ret = issues.data.filter((i) => !i.pull_request);

// if there's a "target" issue, make sure to include that
if (issueNumber && !ret.some((i) => i.number === issueNumber)) {
if (issueNumber && !ret.some((i) => i.number == issueNumber)) {
let issue = await octokit.request(
"GET /repos/{owner}/{repo}/issues/{issue_number}",
{
Expand Down

1 comment on commit f7e1bcb

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.