Skip to content

Instantly share code, notes, and snippets.

View frippz's full-sized avatar
:octocat:

Fredrik Frodlund frippz

:octocat:
View GitHub Profile
@frippz
frippz / bitbucket-webhook-deploy.php
Last active December 18, 2015 00:29
Bitbucket POST service script
<?php
try {
// Decode JSON data from Bitbucket
$payload = json_decode($_REQUEST['payload']);
}
catch(Exception $e) {
exit(0);
}
file_put_contents('payload.log', print_r($payload, TRUE), FILE_APPEND);
@frippz
frippz / github-webhook-deploy.php
Last active July 29, 2016 10:10
Github webhook PHP script
<?php
try {
// Decode JSON data from Github
$payload = json_decode($_REQUEST['payload']);
}
catch(Exception $e) {
exit(0);
}
// Deploy live if push was on master branch