-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME
122 lines (83 loc) · 4.47 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
NAME
Bot::BasicBot::Pluggable::Module::GitHub - GitHub-related modules for
IRC bots running Bot::BasicBot::Pluggable
DESCRIPTION
A set of modules for Bot::BasicBot::Pluggable bots, providing useful
GitHub-related functionality.
If your team use GitHub and colloborate on IRC, these may well be of
interest to you. They're already in use on the Dancer project's IRC
channel, and internally at my workplace, UK2.
Most communication with GitHub uses Net::GitHub::V2, and can use
authentication with an API key for private repositories.
MODULES
The following modules are included - see the documentation for each for
more details on how to use them.
Bot::BasicBot::Pluggable::Module::GitHub::EasyLinks
Provide quick URLs to view issues/pull requests etc when someone
mentions one - for example:
<user> Go have a look at Issue 42
<bot1> Issue 42 (It doesn't work) https://github.com/....
<user> I fixed that in 5fcbb01
<bot1> Commit 5fcbb01 (Retarded logic fail.) - https://github.com/....
You can set a default project per-channel, so the above examples
will look at whatever project is set as default for the channel the
message was in.
You can also explicitly tell it to look at any other GitHub project:
<user> 5fcbb01 @ bigpresh/Bot-BasicBot-Pluggable-Module-GitHub
<bot1> Commit 5fcbb01 (Retarded logic fail.) - https://github.com/...
Bot::BasicBot::Pluggable::Module::GitHub::PullRequests
Monitor pull requests for GitHub projects.
Example:
<@bigpresh> !pr
< sophie> Open pull requests for sukria/Dancer : 8 pull requests open
(felixdo:3, perlpilot:1, jamhed:1, dams:1, ambs:1, JTimothyKing:1)
Bot::BasicBot::Pluggable::Module::GitHub::Announce
Announces issues raised/closed for each channel's default project.
Periodically checks on issues for each project, and reports changes,
for example:
< sophie> Issues closed : 667 (YAML::XS for Session::YAML) by jamhed :
https://github.com/sukria/Dancer/issues/667
Loading modules
See the Bot::BasicBot::Pluggable documentation for how to load these
modules into your bot.
Do not load this module directly; load the modules named above
individually, to get just the functionality you require.
This module is intended only to provide a base for the other modules,
including shared functionality and common documentation.
Configuring the default project repo
The modules above need to know what GitHub project repositories they should
refer to.
The projects are configured with the `!setgithubprojects` command in
a private message to the bot.
You'll need to be authenticated to the bot in order to set the project
(see the auth module).
You set the project with:
!setgithubprojects #channel user/projectname1 user/projectname2 ...
The default project repo for each channel is always the first one you set.
The user/projectname is mapped to `projectname` owned by `user` on GitHub
(in other words, <https://github.com/user/projectname>).
Projects can also be added and removed one by one using
`!addgithubproject` and `!deletegithubproject` as follows:
!addgithubproject #channel user/projectname3
!deletegithubproject #channel user/projectname3
If the project is a private repository which requires authentication, you
can also tell the bot what user and token it should use to authenticate:
!setauthforproject #channel user/privateproject someuser:githubtokenhere
You can generate/find an API token for your GitHub account at
<https://github.com/account/admin>
If you have many projects that you want to use the same auth credentials,
you can use the `!setdefaultauth` command to set a default auth to use
for all projects that don't have a specific auth set.
!setdefaultauth user:githubtokenhere
AUTHOR
David Precious `<davidp@preshweb.co.uk'>
ACKNOWLEDGEMENTS
James Ronan `<james@ronanweb.co.uk'>
CONTRIBUTING
Contributions are very welcome.
LICENSE AND COPYRIGHT
Copyright 2011 David Precious.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.