Skip to content

Commit a8e2eb4

Browse files
authored
feat: add explicit assignees mention to issue reminder bot (#1239)
Signed-off-by: Shivakumar <[email protected]>
1 parent 8e3ee0f commit a8e2eb4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/scripts/bot-issue-reminder-no-pr.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,12 @@ echo "$ALL_ISSUES_JSON" | jq -c '.' | while read -r ISSUE_JSON; do
134134

135135
echo "[REMIND] Issue #$ISSUE assigned for $DIFF_DAYS days, posting reminder."
136136

137-
# Post reminder comment
138-
MESSAGE="Hi, this is ReminderBot. This issue has been assigned but has had no pull request created. Are you still planning on working on the issue?
137+
ASSIGNEE_MENTIONS=$(echo "$ISSUE_JSON" | jq -r '.assignees[].login | "@" + .' | xargs)
138+
139+
MESSAGE="Hi ${ASSIGNEE_MENTIONS} 👋
140+
141+
This issue has been assigned but no pull request has been created yet.
142+
Are you still planning on working on it?
139143
140144
From the Python SDK Team"
141145

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
104104
- Refactored `examples/tokens/custom_royalty_fee.py` by splitting monolithic function custom_royalty_fee_example() into modular functions create_royalty_fee_object(), create_token_with_fee(), verify_token_fee(), and main() to improve readability, cleaned up setup_client() (#1169)
105105
- Added comprehensive unit tests for Timestamp class (#1158)
106106
- Enhance unit and integration test review instructions for clarity and coverage `.coderabbit.yaml`.
107+
- Issue reminder bot now explicitly mentions assignees (e.g., `@user`) in comments. ([#1232](https://github.com/hiero-ledger/hiero-sdk-python/issues/1232))
107108

108109

109110
### Fixed

0 commit comments

Comments
 (0)