We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003cd7a commit 8fd3911Copy full SHA for 8fd3911
2 files changed
action/index.cjs
@@ -150555,7 +150555,7 @@ const robot = (app) => {
150555
if (review.hunk_header) {
150556
const hunkMatch = review.hunk_header.match(/@@\s+-\d+(?:,\d+)?\s+\+(\d+)(?:,(\d+))?\s+@@/);
150557
if (hunkMatch) {
150558
- line = parseInt(hunkMatch[1], 10);
+ line = parseInt(hunkMatch[2], 10);
150559
}
150560
150561
ress.push({
src/bot.ts
@@ -218,7 +218,7 @@ export const robot = (app: Probot) => {
218
219
220
221
222
223
224
0 commit comments