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 cca48ee commit 7590b37Copy full SHA for 7590b37
.github/scripts/mentor_assignment.sh
@@ -118,7 +118,11 @@ EOF
118
EXISTING_WELCOME=$(gh issue view "$ISSUE_NUMBER" --repo "$REPO" --comments --json comments \
119
| jq -r --arg assignee "$ASSIGNEE" '
120
.comments[]
121
- | select(.body | test("Welcome to the Hiero Python SDK,?\\s*@" + $assignee))
+ | select(
122
+ (.body | contains("Welcome to the Hiero Python SDK, @" + $assignee))
123
+ or
124
+ (.body | contains("Welcome to the Hiero Python SDK @" + $assignee))
125
+ )
126
| .id' | head -1)
127
128
if [ -n "$EXISTING_WELCOME" ]; then
0 commit comments