Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

Pithub::Issues - Github v3 Issues API

VERSION

version 0.01041

METHODS

assignees

Provides access to Pithub::Issues::Assignees.

comments

Provides access to Pithub::Issues::Comments.

create

events

Provides access to Pithub::Issues::Events.

get

labels

Provides access to Pithub::Issues::Labels.

list

milestones

Provides access to Pithub::Issues::Milestones.

update

  • Edit an issue

    PATCH /repos/:user/:repo/issues/:id

    Parameters:

    • user: mandatory string

    • repo: mandatory string

    • data: mandatory hashref, having following keys:

      • title: mandatory string

      • body: optional string

      • assignee: optional string - Login for the user that this issue should be assigned to.

      • milestone: optional number - Milestone to associate this issue with.

      • labels: optional arrayref of strings - Labels to associate with this issue. Pass one or more Labels to replace the set of Labels on this Issue. Send an empty arrayref ([]) to clear all Labels from the Issue.

    Examples:

    my $i = Pithub::Issues->new;
    my $result = $i->update(
    user => 'plu',
    repo => 'Pithub',
    issue_id => 1,
    data => {
    assignee => 'octocat',
    body => "I'm having a problem with this.",
    labels => [ 'Label1', 'Label2' ],
    milestone => 1,
    state => 'open',
    title => 'Found a bug'
    }
    );

AUTHOR

Johannes Plunien <plu@cpan.org>

COPYRIGHT AND LICENSE

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.