fix: use the correct assignees property

This commit is contained in:
Peter Evans 2021-02-10 09:00:23 +09:00
parent 34371f09e5
commit ed00d4629c
2 changed files with 2 additions and 2 deletions

View file

@ -141,7 +141,7 @@ export class GitHubHelper {
await this.octokit.issues.addAssignees({
...this.parseRepository(baseRepository),
issue_number: pull.number,
labels: inputs.assignees
assignees: inputs.assignees
})
}