feat: handle pull_request assigned action

This commit is contained in:
Laurent Peuch 2024-03-18 19:18:31 +01:00
parent 504f18d019
commit 5318ee4434

View file

@ -429,6 +429,13 @@ async def github(request):
repository=repository,
)
elif action == "assigned":
assigned_user = request.json["assignee"]["login"]
await notify(
f"[{repository}] @{user} {action} {assigned_user} on [pull request #{pull_request_number}]({url}): {pull_request_title}",
repository=repository,
)
elif action in (
"review_requested",
"review_request_removed",