【发布时间】:2019-04-09 16:17:42
【问题描述】:
我使用nodejs 和typescript 创建了一个GitHub probot 应用程序。我正在收听pull_request 事件。如何从 probot context 对象中检索 pr_number?
以下是intex.ts中的代码
export = (app: Application) => {
app.on('pull_request', async (context) => {
})
}
【问题讨论】:
标签: node.js typescript github-api probot