You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git commit -m "feat: add entry from issue #${ISSUE_NUMBER}"
67
67
git push origin "$BRANCH"
68
-
PR_BODY="Resolves #${ISSUE_NUMBER}
69
-
70
-
Auto-generated from issue by @${ISSUE_AUTHOR}.
71
-
72
-
**Please review the entry before merging.**"
68
+
PR_BODY=$(printf 'Resolves #%s\n\nAuto-generated from issue by @%s.\n\n**Please review the entry before merging.**' "${ISSUE_NUMBER}" "${ISSUE_AUTHOR}")
73
69
gh pr create \
74
70
--title "Add entry: ${ISSUE_TITLE}" \
75
71
--body "$PR_BODY" \
@@ -82,7 +78,5 @@ Auto-generated from issue by @${ISSUE_AUTHOR}.
82
78
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
83
79
ISSUE_NUMBER: ${{ github.event.issue.number }}
84
80
run: |
85
-
gh issue comment "${ISSUE_NUMBER}" \
86
-
--body "✅ 감사합니다! PR이 자동으로 생성되었습니다. 관리자 검토 후 머지됩니다.
87
-
88
-
Thanks! A PR has been automatically created from this issue and is pending admin review."
81
+
COMMENT=$(printf '✅ 감사합니다! PR이 자동으로 생성되었습니다. 관리자 검토 후 머지됩니다.\n\nThanks! A PR has been automatically created from this issue and is pending admin review.')
0 commit comments