fix: gh webhook response 200 to installation_repositories

This commit is contained in:
Andras Bacsai 2023-11-06 10:16:21 +01:00
parent 01331c287b
commit f1da735c40

View File

@ -74,7 +74,7 @@
// Just pong // Just pong
return response('pong'); return response('pong');
} }
if ($x_github_event === 'installation') { if ($x_github_event === 'installation' || $x_github_event === 'installation_repositories') {
// Installation handled by setup redirect url. Repositories queried on-demand. // Installation handled by setup redirect url. Repositories queried on-demand.
return response('cool'); return response('cool');
} }