lita-github-pinger 0.7.9 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/lita/handlers/github_pinger.rb +2 -2
- data/lita-github-pinger.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24f8027c591f287e67c566c12de074b78419374b
|
|
4
|
+
data.tar.gz: 2c43fec1e9138ec89ae150d9ffc725d27bdc7fbe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4cfc8b1e864a6e99621e4e78270ff6b8ceef2e65100393cbdc0bc26c3ba9684456d1414d93d74f8978201889a1b14046812527f481ebd3423f0407d40a842dc
|
|
7
|
+
data.tar.gz: ccb7dff2e4cab3295634faec9db1b59445d20be31faa5189529c4dd2470de7217435f5e3cdbad4ed3132cc2f058ae02d91a48803cfec351616e1c3d631df1144
|
|
@@ -161,11 +161,11 @@ module Lita
|
|
|
161
161
|
message_for_owner = "#{chosen_reviewer} has been notified via round-robin to review #{body["pull_request"]["html_url"]}"
|
|
162
162
|
|
|
163
163
|
puts "Sending DM to #{chosen_reviewer}..."
|
|
164
|
-
send_dm(chosen_reviewer,
|
|
164
|
+
send_dm(chosen_reviewer, message_for_reviewer)
|
|
165
165
|
|
|
166
166
|
if pr_owner
|
|
167
167
|
puts "Notifying #{pr_owner} of assignment."
|
|
168
|
-
send_dm(pr_owner,
|
|
168
|
+
send_dm(pr_owner, message_for_owner)
|
|
169
169
|
else
|
|
170
170
|
puts "Couldn't find a config for pr owner #{body["pull_request"]["user"]["login"]}. Make sure they are in the lita config!"
|
|
171
171
|
puts "Skipping notifying PR owner of RR assignment."
|
data/lita-github-pinger.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "lita-github-pinger"
|
|
3
|
-
spec.version = "0.
|
|
3
|
+
spec.version = "0.8.0"
|
|
4
4
|
spec.authors = ["Taylor Lapeyre"]
|
|
5
5
|
spec.email = ["taylorlapeyre@gmail.com"]
|
|
6
6
|
spec.description = "A Lita handler that detects github comment notifications and regurgitates a ping to the correct slack username."
|