api: fix github webhook

This commit is contained in:
emily 2024-08-25 13:53:19 +02:00
parent 64df0cba47
commit ab6d81fad4
Signed by untrusted user: snaakey
GPG key ID: F6F4C66207FCF995
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -172,7 +172,7 @@ subtest "/api/push-github" => sub {
"Content" => encode_json({
repository => {
owner => {
name => "OWNER",
login => "OWNER",
},
name => "LEGACY-REPO",
}
@ -198,7 +198,7 @@ subtest "/api/push-github" => sub {
"Content" => encode_json({
repository => {
owner => {
name => "OWNER",
login => "OWNER",
},
name => "FLAKE-REPO",
}