Merge pull request #5245 from janwiebe-jump/fix-gitea
Gitea webhook sends action synchronized
This commit is contained in:
commit
337e12f5c6
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ public function manual(Request $request)
|
|||
}
|
||||
}
|
||||
if ($x_gitea_event === 'pull_request') {
|
||||
if ($action === 'opened' || $action === 'synchronize' || $action === 'reopened') {
|
||||
if ($action === 'opened' || $action === 'synchronized' || $action === 'reopened') {
|
||||
if ($application->isPRDeployable()) {
|
||||
$deployment_uuid = new Cuid2;
|
||||
$found = ApplicationPreview::where('application_id', $application->id)->where('pull_request_id', $pull_request_id)->first();
|
||||
|
|
|
|||
Loading…
Reference in a new issue