We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 794530c commit 17ddae0Copy full SHA for 17ddae0
create_pr.sh
@@ -56,20 +56,6 @@ get_body() {
56
fi
57
}
58
59
-# Issue 번호 입력 및 검증
60
-get_issue_numbers() {
61
- read -p "연결할 Issue 번호를 입력하세요 (예: 123, 없으면 ENTER): " ISSUE_INPUT
62
-
63
- if [ -n "$ISSUE_INPUT" ]; then
64
- # 숫자만 허용
65
- if [[ "$ISSUE_INPUT" =~ ^[0-9]+$ ]]; then
66
- BODY="${BODY}\n\nCloses #${ISSUE_INPUT}"
67
- else
68
- echo "경고: 잘못된 형식입니다. Issue 번호는 숫자만 허용됩니다."
69
- fi
70
71
-}
72
73
# Dry-run 미리보기
74
dry_run() {
75
echo "=== PR 생성 미리보기 ==="
@@ -90,7 +76,6 @@ main() {
90
76
91
77
get_title
92
78
get_body
93
- get_issue_numbers
94
79
95
80
# Dry-run 확인
96
81
read -p "PR을 생성하기 전에 미리보기를 보시겠습니까? (Y/n): " show_preview
0 commit comments