Fix delete comments workflow (#16896)

Release Notes:

- N/A
This commit is contained in:
jvmncs 2024-08-26 12:54:52 -04:00 committed by GitHub
parent d50cb17256
commit e8c6c537de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ jobs:
with:
script: |
const commentId = context.payload.comment.id;
await github.issues.deleteComment({
await github.rest.issues.deleteComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: commentId
@ -37,9 +37,8 @@ jobs:
uses: actions/github-script@v7
with:
script: |
const userId = context.payload.comment.user.id;
await github.users.block({
owner: context.repo.owner,
repo: context.repo.repo,
user_id: userId
const username = context.payload.comment.user.login;
await github.rest.orgs.blockUser({
org: context.repo.owner,
username: username
});