GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::GitHub::V3::Actions(3) User Contributed Perl Documentation Net::GitHub::V3::Actions(3)

Net::GitHub::V3::Actions - GitHub Actions API

    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' } );

GitHub Actions

<https://developer.github.com/v3/actions/>

Artifacts

<https://developer.github.com/v3/actions/artifacts/>

List artifacts for a repository

    $actions->artifacts( { owner => 'xxx', repo => 'repo' } );
    
    $actions->run_artifacts( { owner => 'xxx', repo => 'repo', run_id => XXX } );
    
    $actions->artifacts( { owner => 'xxx', repo => 'repo', artifact_id => 'ID' } );
    

Workflows

<https://developer.github.com/v3/actions/workflows/>

List repository workflows

    $actions->workflows( { owner => 'xxx', repo => 'repo' } );
    
Get a workflow

    $actions->workflow( { owner => 'xxx', repo => 'repo', workflow_id => 1234 } );
    

Workflow Jobs

<https://developer.github.com/v3/actions/workflow-jobs/>

List jobs for a workflow run
Get a workflow job

Refer Net::GitHub

2022-10-03 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.