Skip to content

Commit d05eea0

Browse files
committed
fix: Modify code-review.yml
1 parent 7acad3f commit d05eea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
112112
# 변경된 파일과 라인에 리뷰 코멘트를 추가
113113
commit_id = file.get('sha') # 파일의 sha 값을 사용
114-
line_number = file.get('patch).split('\n').index(next(line for line in file['patch'].split('\n') if line.startswith('+'))) + 1
114+
line_number = file.get('patch').split('\n').index(next(line for line in file['patch'].split('\n') if line.startswith('+'))) + 1
115115
comment_body = {
116116
"body": review_comment,
117117
"path": file_path,

0 commit comments

Comments
 (0)