Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteCorum committed May 4, 2024
1 parent c69c661 commit a4f1645
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,17 @@ jobs:
🖐️ Hello @${{ github.actor }}!
Thank you for your contribution. We will review your pull request soon. Please make sure you have followed our contributing guidelines.
`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: prComment
labels: ['new', 'enhancement']
});
github.rest.issues.update({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['enhancement', 'new']
});

0 comments on commit a4f1645

Please sign in to comment.