我有一个监听所有代码审查的 webhook,然后我获取此 PR 审查的评论,以便获得评论在差异中的位置。我正在使用 GitHub REST API,但我遇到的问题与 GraphQL API 相同。
所以工作流程是:
- 从 webhook 中获取评论 ID
- 获取该评论的评论列表
- 对于每条评论,获取 diff hunk 和找到编辑行的位置
所有这些在 99% 的时间里都能正常工作。有时我null
在这个位置上,我忽略了这些评论。
但这一次,我遇到了另一个奇怪的问题。通常,位置是指 diff 中行的索引。
例如,在:
@@ -1 +1,3 @@
-# sedy-test
\\ No newline at end of file
+# sedy-test
+
+This repository is used to test [sedy](https://github.com/marmelab/sedy).
如果位置为 3,则编辑的行为+# sedy-test
。
问题是对于某些评论,我得到的位置不能在差异内。例如,请参阅此 PR。
当我尝试通过以下请求获取评论的评论位置时:
{
repository(owner: "Kmaschta", name: "comfygure") {
pullRequest(number: 1) {
reviews(last: 1) {
edges {
node {
state
comments(first: 1) {
edges {
node {
bodyText
authorAssociation
position
originalPosition
diffHunk
}
}
}
}
}
}
}
}
}
响应如下:
{
"data": {
"repository": {
"pullRequest": {
"reviews": {
"edges": [
{
"node": {
"state": "COMMENTED",
"comments": {
"edges": [
{
"node": {
"bodyText": "s/fot/for/",
"authorAssociation": "OWNER",
"position": 71,
"originalPosition": 71,
"diffHunk": "@@ -24,31 +34,39 @@ const ls = (ui, modules) => function* () {\n };\n \n const add = (ui, modules, options) => function* () {\n- const { red, bold } = ui.colors;\n+ const { red, bold, green } = ui.colors;\n \n if (!options.length) {\n ui.error(`${red('No environment specified.')}`);\n- help(ui, 1);\n }\n \n if (options.length > 1) {\n ui.error(`${red('Invalid environment format. The environment name should be one word.')}`);\n- help(ui, 1);\n+ }\n+\n+ if (options.length !== 1) {\n+ ui.print(`${bold('SYNOPSIS')}\n+ ${bold('comfy')} env add <environment>\n+\n+Type ${green('comfy env --help')} for details`);\n+\n+ return ui.exit(0);\n }\n \n const project = yield modules.project.retrieveFromConfig();\n const environment = yield modules.environment.add(project, options[0]);\n- const addCommand = `comfy add ${environment.name}`;\n+ const addCommand = `comfy setall ${environment.name}`;\n \n- ui.print(`${bold('Cool!')} Your new environment \"${bold(environment.name)}\" was successfully saved.`);\n- ui.print(`You can now add a configuration, try ${bold(addCommand)}`);\n+ ui.print(`${bold(green('Environment successfully created'))}`);\n+ ui.print(`You can now set a configuration fot this environment using ${bold(addCommand)}`);"
}
}
]
}
}
}
]
}
}
}
}
}
位置是 71,但差异不包含超过 40 行。
如果是 GitHub API,或者我不理解 position 字段的意义,那么这是一个错误吗?
注意:我在 GitHub 论坛上发布了同样的问题。