|
NAMENet::GitHub::V3::Actions - GitHub Actions API SYNOPSIS use Net::GitHub::V3;
my $gh = Net::GitHub::V3->new; # read L<Net::GitHub::V3> to set right authentication info
my $actions = $gh->actions;
# set :user/:repo for simple calls
$actions->set_default_user_repo('fayland', 'perl-net-github');
$actions->workflows();
$actions->workflows( { owner => 'xxx', repo => 'repo' } );
DESCRIPTIONMETHODSGitHub Actions <https://developer.github.com/v3/actions/> Artifacts <https://developer.github.com/v3/actions/artifacts/>
Workflows <https://developer.github.com/v3/actions/workflows/>
Workflow Jobs <https://developer.github.com/v3/actions/workflow-jobs/> AUTHOR & COPYRIGHT & LICENSERefer Net::GitHub
|