|
NAMEPithub::Repos::Statuses - Github v3 repos / statuses APIVERSIONversion 0.01036METHODSlistExtra arguments
List statuses for a ref GET /repos/:user/:repo/statuses/:ref Examples: my $statuses = Pithub::Repos::Statuses->new; my $result = $statuses->list( ref => 'master' ); createExtra arguments
Add a status to a SHA. POST /repos/:user/:repo/statuses/:sha Examples: my $statuses = Pithub::Repos::Statuses->new; my $result = $statuses->create( user => 'plu', repo => 'Pithub', sha => '0123456', data => { state => 'error', description => 'Build failed', target_url => 'https://travis-ci.org/some/url/0123456', }, ); AUTHORJohannes Plunien <plu@cpan.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2011-2019 by Johannes Plunien.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |