Skip to content

Commit 8e46830

Browse files
authored
Merge pull request conda-forge#111 from isuruf/issue
Don't look at title if issue comment
2 parents 0547538 + fa99492 commit 8e46830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda_forge_webservices/webapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def post(self):
179179
commands.pr_comment(owner, repo_name, issue_num, comment)
180180

181181
if not pull_request and action in ['opened', 'edited', 'created', 'reopened']:
182-
title = body['issue']['title']
182+
title = body['issue']['title'] if event == "issues" else ""
183183
comment = body['issue']['body']
184184
commands.issue_comment(owner, repo_name, issue_num, title, comment)
185185

0 commit comments

Comments
 (0)