Update parameter in bounty workflow

The parameter in the bounty workflow has been changed from 'name' to 'repo'. This change will make the workflow refer to the correct repository parameter when creating comments on issues.
This commit is contained in:
Sipke Schoorstra 2024-04-10 19:30:58 +02:00
parent a44b8901ea
commit c117dd7234

View file

@ -25,6 +25,6 @@ jobs:
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.name,
repo: context.repo.repo,
body: issueComment
});