Skip to content

Commit

Permalink
fix: logging
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianKuesters committed Mar 25, 2024
1 parent 664bbd3 commit f393ce3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ async function run() {
);
}

core.info("Continuing to label issues");

// Label issues
if (labelIssuesWith) {
core.info(`Labeling issues with ${labelIssuesWith}`);
const issueNumbers = issues.map((issue) => issue.number);
await gitHubRepositoryUtils.addLabelToIssues(issueNumbers, labelIssuesWith);
}
Expand Down

0 comments on commit f393ce3

Please sign in to comment.