Fix api/push-github

Fixes #309
This commit is contained in:
Joe Hermaszewski 2016-06-14 10:36:43 +01:00
parent 6bcbabb4df
commit eb9aba0ff4

View file

@ -246,7 +246,7 @@ sub push_github : Chained('api') PathPart('push-github') Args(0) {
$c->{stash}->{json}->{jobsetsTriggered} = [];
my $in = decode_json $c->req->body_params->{payload};
my $in = $c->request->{data};
my $owner = $in->{repository}->{owner}->{name} or die;
my $repo = $in->{repository}->{name} or die;
print STDERR "got push from GitHub repository $owner/$repo\n";