mirror of
https://github.com/YunoHost/webhooks.git
synced 2024-09-03 19:56:54 +02:00
[fix] no '_'
This commit is contained in:
parent
2f401d65fb
commit
2b2cf5c308
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ async def github(request):
|
|||
elif action == "closed":
|
||||
if request.json["pull_request"]["merged"]:
|
||||
action = "merged"
|
||||
notify(f"[{repository}] @{user} {action} pull_request #{pull_request_number}: {pull_request_title} {url}")
|
||||
notify(f"[{repository}] @{user} {action} pull request #{pull_request_number}: {pull_request_title} {url}")
|
||||
|
||||
# super weird, this action is not supposed to be possible for pull_request :|
|
||||
elif action == "milestoned":
|
||||
|
|
Loading…
Reference in a new issue