Событие ERROR: не найдено; при запуске события из другого события: приложение probot, встроенное в nodejs
Я создаю приложение GitHub в probot и nodejs и пытаюсь обновить PR всякий раз, когда происходит событие pull_request.synchronize. Я знаю, что это не имеет особого смысла, но дело в том, что я хочу иметь возможность обновлять PR при наступлении определенного события.
app.on('pull_request.synchronize', async context => {
console.log('---------------------- on pull_request.synchronize, body of PR : ', context.payload.pull_request)
console.log('State of PR after pull_request.synchronize event :---------------', context.payload.pull_request.state)
await context.github.pulls.update({
owner:context.payload.repository.owner,
repo :context.payload.repository.name,
pull_number :context.payload.pull_request.number,
title:'updated Pull Request Title: Success',
body:'updated Pull Request Body: Success',
})
})
Каждый раз я получаю ошибку ниже:
ERROR event: Not Found (id=ssjsk-dd-sdfsdfs-fsfs-fsfsfsffsd)
HttpError: Not Found
at response.text.then.message (C:\GitWorkspace\user\GitHubApps\github-app-name\node_modules\@octokit\request\dist-node\index.js:66:23)
at process._tickCallback (internal/process/next_tick.js:68:7)
--
event: {
"event": "pull_request.synchronize",
"id": "2332-3131-131-31231313-1313232144142",
"installation": 3352243,
"repository": "user/Demo-Repo"
}
06:24:58.460Z ERROR probot: Not Found
HttpError: Not Found
at response.text.then.message (C:\GitWorkspace\user\GitHubApps\github-app-name\node_modules\@octokit\request\dist-node\index.js:66:23)
at process._tickCallback (internal/process/next_tick.js:68:7)
06:24:58.472Z INFO http: POST / 500 - 519.93 ms (id=3424234-43242-42423478a-4242-42342342)
06:24:58.476Z ERROR probot: Internal Server Error
Error: Internal Server Error
at Request.callback (C:\GitWorkspace\user\GitHubApps\github-app-name\node_modules\superagent\lib\node\index.js:706:15)
at IncomingMessage.parser (C:\GitWorkspace\user\GitHubApps\github-app-name\node_modules\superagent\lib\node\index.js:916:18)
at IncomingMessage.emit (events.js:203:15)
at IncomingMessage.EventEmitter.emit (domain.js:448:20)
at endReadableNT (_stream_readable.js:1129:12)
at process._tickCallback (internal/process/next_tick.js:63:19)
Почему невозможно получить детали из контекста, когда на самом деле контекст распечатывается моим оператором консоли и содержит детали pull_request.
Я только новичок как в проботе, так и в nodejs, поэтому я не уверен, связано ли это с синтаксисом.
1 ответ
Проблема в том, что context.payload.repository.owner
является объектом, сравните пример полезной нагрузки на https://developer.github.com/v3/activity/events/types/
Попробуйте заменить его на context.payload.repository.owner.login
.
Probot также предоставляет удобный метод, который возвращает и { owner, repo }
объект на основе контекста, и вы можете передать ему дополнительные параметры
Попробуйте следующее
await context.github.pulls.update(context.repo({
pull_number: context.payload.pull_request.number,
title:'updated Pull Request Title: Success',
body:'updated Pull Request Body: Success',
}))