We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957be8f commit 514a1c5Copy full SHA for 514a1c5
process_pr_v2.py
@@ -1855,12 +1855,9 @@ def should_notify_without_at(pr_body: str) -> bool:
1855
"""
1856
Check if notifications should omit @ symbol.
1857
1858
- Returns True if first non-blank line matches <notify></notify>.
+ Returns True if <notify></notify> is found anywhere in issue body.
1859
1860
- first_line, _ = extract_command_line(pr_body or "")
1861
- if not first_line:
1862
- return False
1863
- return bool(RE_NOTIFY_NO_AT.match(first_line))
+ return bool(RE_NOTIFY_NO_AT.search(pr_body))
1864
1865
1866
# =============================================================================
0 commit comments