Build/buildProject.php

9 lines
208 B
PHP

<?php
$postBody = $_POST['payload'];
$payload = json_decode($postBody, true);
if ($payload['repository']['name'] === 'Orange-Management') {
shell_exec('./buildProject.sh > /dev/null 2>/dev/null &');
}