Skip to content

Commit 4f457f7

Browse files
authored
Merge pull request #110 from asmeurer/dependabot-fix
Fix dependabot check
2 parents b746f47 + e5d5b18 commit 4f457f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sympy_bot/webapp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ async def pull_request_edited(event, gh, *args, **kwargs):
6666

6767
if event.data['pull_request']['user']['login'] == "dependabot[bot]":
6868
await pull_request_noop(event, gh, status_message="This is a Dependabot PR. SymPy Bot not run.")
69-
await pull_request_comment_release_notes(event, gh)
69+
else:
70+
await pull_request_comment_release_notes(event, gh)
7071
await pull_request_comment_added_deleted(event, gh)
7172
await rate_limit_comment(event, gh)
7273

0 commit comments

Comments
 (0)