Skip to content

Commit

Permalink
Log new assignees
Browse files Browse the repository at this point in the history
  • Loading branch information
CybAtax committed May 24, 2024
1 parent 64ff90e commit 37ba882
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/author-pr-assignment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,11 @@ jobs:
});
core.debug(JSON.stringify(result));
core.info(`@${author} has been assigned to the pull request: #${context.issue.number}`);
core.info(`@${author} has been assigned to the pull request: #${context.issue.number}`);
const assignees = await github.rest.issues.listAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number
});
core.info(`Assignees for PR: ${assignees}`);

0 comments on commit 37ba882

Please sign in to comment.