Skip to content

Commit

Permalink
Item14780: Disable the IRC and Email hooks in github
Browse files Browse the repository at this point in the history
Github has discontinued these services.  We need a different solution
for sending email / irc notifications of commits.
  • Loading branch information
gac410 committed Nov 2, 2018
1 parent 275004a commit c6b9ab1
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions core/tools/develop/foswiki-github-hooks.pl
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,27 @@
my $ghaccount = 'foswiki';

my %HOOKS = (
email => {
'name' => 'email',
'active' => JSON::true,
'config' => {
'address' => 'foswiki-svn@lists.sourceforge.net',
'secret' => $secrets->{'mailman_secret'},
'send_from_author' => '0',
}
},
irc => {
'name' => 'irc',
'active' => JSON::true,
'config' => {
'server' => 'chat.freenode.net',
'port' => '6667',
'room' => 'foswiki',
'nick' => 'GithubBot',
'password' => $secrets->{'GithubBot_password'},
}
},

# email => {
# 'name' => 'email',
# 'active' => JSON::true,
# 'config' => {
# 'address' => 'foswiki-svn@lists.sourceforge.net',
# 'secret' => $secrets->{'mailman_secret'},
# 'send_from_author' => '0',
# }
# },
# irc => {
# 'name' => 'irc',
# 'active' => JSON::true,
# 'config' => {
# 'server' => 'chat.freenode.net',
# 'port' => '6667',
# 'room' => 'foswiki',
# 'nick' => 'GithubBot',
# 'password' => $secrets->{'GithubBot_password'},
# }
# },
web => {
'name' => 'web',
'active' => JSON::true,
Expand Down

0 comments on commit c6b9ab1

Please sign in to comment.