Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/PR_Test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PR 알람 Test 입니다.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

파일 끝에 개행 문자 누락

파일이 개행 문자 없이 끝나고 있습니다. 대부분의 코딩 표준에서는 텍스트 파일이 개행 문자로 끝나도록 권장합니다.

제안된 수정사항
 PR 알람 Test 입니다.
+
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
PR 알람 Test 입니다.
PR 알람 Test 입니다.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/PR_Test.txt at line 1, 파일 끝에 개행 문자가 누락되어 있습니다; "PR 알람 Test 입니다."로
끝나는 해당 파일의 끝에 단일 '\n' 개행 문자를 추가해 파일을 개행 문자로 마무리하도록 수정하세요.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: PR 템플릿 관련 파일 검색

# .github 디렉토리의 모든 파일 확인
echo "=== .github 디렉토리 구조 ==="
tree .github 2>/dev/null || find .github -type f

# PR 템플릿 관련 파일 검색
echo -e "\n=== PR 템플릿 파일 검색 ==="
fd -t f "pull_request_template|PR.*template" .github
rg -l "작업 내용|테스트.*확인|영향 범위|리뷰 포인트" .github

Repository: MSA-Service-12th/.github

Length of output: 541


테스트 파일을 저장소에서 제거하세요

.github/PR_Test.txt는 Discord PR 알람 테스트용 임시 파일로 보이므로 저장소에 영구적으로 커밋되어서는 안 됩니다. PR 템플릿들(.github/PULL_REQUEST_TEMPLATE/.github/pull_request_template.md)은 이미 존재하므로, 이 테스트 파일을 제거하거나 .gitignore에 추가하세요.

또한 파일 끝에 개행 문자를 추가하세요.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/PR_Test.txt at line 1, Remove the temporary PR test file named
PR_Test.txt from the repository history (delete the committed file and commit
the deletion) or, if you need to keep it locally, add PR_Test.txt to .gitignore
instead; after removing/ignoring it, ensure the file ends with a newline (if you
keep a copy locally before ignoring, add the trailing newline) and update the
branch commit so the file is no longer present in the PR.