Skip to content

Commit

Permalink
chore: fix output logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ala-n committed Jan 17, 2025
1 parent 5f44df3 commit 2e9ed6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fix-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
console.log('Found %d issues without "released" label', issuesWithoutReleasedLabel.length);
for (const issue of issuesWithoutReleasedLabel) {
console.log(`Adding 'released' label to issue #${issue}`);
console.log(`Adding 'released' label to issue #${issue.number}`);
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue.number,
labels: ['released']
});
console.log(`Removing 'released on @beta' label from issue #${issue}`);
console.log(`Removing 'released on @beta' label from issue #${issue.number}`);
await github.rest.issues.removeLabel({
owner: context.repo.owner,
repo: context.repo.repo,
Expand Down

0 comments on commit 2e9ed6a

Please sign in to comment.