Pithub::Repos::Releases(3pm) | User Contributed Perl Documentation | Pithub::Repos::Releases(3pm) |
Pithub::Repos::Releases - Github v3 Repo Releases API
version 0.01041
Provides access to Pithub::Repos::Releases::Assets.
GET /repos/:owner/:repo/releases
Examples:
my $r = Pithub::Repos::Releases->new; my $result = $r->get( repo => 'Pithub', user => 'plu', );
GET /repos/:owner/:repo/releases/:id
Examples:
my $r = Pithub::Repos::Releases->new; my $result = $r->get( repo => 'Pithub', user => 'plu', release_id => 1, );
POST /repos/:user/:repo/releases
Examples:
my $r = Pithub::Repos::Releases->new; my $result = $r->create( user => 'plu', repo => 'Pithub', data => { tag_name => 'v1.0.0', target_commitish => 'master', name => 'v1.0.0', body => 'Description of the release', draft => JSON::MaybeXS::false(), # or alternative below prerelease => JSON::MaybeXS::false(), # or alternative below generate_release_notes => JSON::MaybeXS::false(), # or alternative below } );
Booleans:
Several of the attributes require boolean values in the request that is sent to GitHub. Zero (0) and one (1) are integers and will not be encoded correctly in the JSON encoded request.
There are numerous options for your call to Pithub::Repos::Releases->create.
require JSON::MaybeXS;
Then use the following values for the booleans:
JSON::MaybeXS::true() JSON::MaybeXS::false()
require Cpanel::JSON::XS;
Then use the following values for the booleans:
Cpanel::JSON::XS::true Cpanel::JSON::XS::false
require JSON::PP;
Then use the following values for the booleans:
$JSON::PP::true $JSON::PP::false
PATCH /repos/:user/:repo/releases/:id
Examples:
my $r = Pithub::Repos::Releases->new; my $result = $r->update( user => 'plu', repo => 'Pithub', release_id => 1, data => { tag_name => 'v1.0.0', target_commitish => 'master', name => 'v1.0.0', body => 'Description of the release', draft => 0, prerelease => 0, } );
DELETE /repos/:user/:repo/releases:id
Examples:
my $r = Pithub::Repos::Releases->new; my $result = $r->delete( user => 'plu', repo => 'Pithub', release_id => 1, );
Johannes Plunien <plu@cpan.org>
This software is copyright (c) 2011 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.
2023-09-02 | perl v5.36.0 |