|
|
| |
Pithub::Repos::Hooks(3) |
User Contributed Perl Documentation |
Pithub::Repos::Hooks(3) |
Pithub::Repos::Hooks - Github v3 Repo Hooks API
- •
- Create a hook
POST /repos/:user/:repo/hooks
Examples:
my $hooks = Pithub::Repos::Hooks->new;
my $result = $hooks->create(
user => 'plu',
repo => 'Pithub',
data => {
name => 'irc',
active => 1,
config => {
server => 'irc.perl.org',
port => 6667,
room => 'pithub',
},
},
);
- •
- Delete a hook
DELETE /repos/:user/:repo/hooks/:id
Examples:
my $hooks = Pithub::Repos::Hooks->new;
my $result = $hooks->delete(
user => 'plu',
repo => 'Pithub',
hook_id => 5,
);
- •
- Get single hook
GET /repos/:user/:repo/hooks/:id
Examples:
my $hooks = Pithub::Repos::Hooks->new;
my $result = $hooks->get(
user => 'plu',
repo => 'Pithub',
hook_id => 5,
);
- •
- List Hooks
GET /repos/:user/:repo/hooks
Examples:
my $hooks = Pithub::Repos::Hooks->new;
my $result = $hooks->tags( user => 'plu', repo => 'Pithub' );
- •
- Get single hook
POST /repos/:user/:repo/hooks/:id/test
Examples:
my $hooks = Pithub::Repos::Hooks->new;
my $result = $hooks->test(
user => 'plu',
repo => 'Pithub',
hook_id => 5,
);
- •
- Update/edit a hook
PATCH /repos/:user/:repo/hooks/:id
Examples:
my $hooks = Pithub::Repos::Hooks->new;
my $result = $hooks->update(
user => 'plu',
repo => 'Pithub',
hook_id => 5,
data => {
name => 'irc',
active => 1,
config => {
server => 'irc.freenode.net',
port => 6667,
room => 'pithub',
},
},
);
Active hooks can be configured to trigger for one or more events. The default
event is push. The available events are:
- commit_comment - Any time a Commit is commented on.
- download - Any time a Download is added to the Repository.
- fork - Any time a Repository is forked.
- fork_apply - Any time a patch is applied to the Repository from the Fork
Queue.
- gollum - Any time a Wiki page is updated.
- issues - Any time an Issue is opened or closed.
- issue_comment - Any time an Issue is commented on.
- member - Any time a User is added as a collaborator to a non-Organization
Repository.
- public - Any time a Repository changes from private to public.
- pull_request - Any time a Pull Request is opend, closed, or synchronized
(updated due to a new push in the branch that the pull request is
tracking).
- push - Any git push to a Repository.
- watch - Any time a User watches the Repository.
Johannes Plunien <plu@cpan.org>
This 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. Output converted with ManDoc. |