lita-github-pinger 0.6.0 → 0.6.1
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 +4 -4
- 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: 1104b3bdbb19060445e5ff7cda9d4078de84aed7
|
4
|
+
data.tar.gz: f5abce7da24f8d8357ecddcc63af4c6764628483
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfde343f3fd558df47a83bd9fae9693d1beef7cb0a9bd9d9cdbc997dfb66ba6eec123545648cb2fb2ad4a8326d2ecb04866a1c0149250e391aa4a7a911705b3c
|
7
|
+
data.tar.gz: 0711ff686bf44fe36ee2c71af3c043eebc66ac786cd0754503a12959409303bb6b6fd0a3da8e31bb8a450f323da602dd8e88471883c8d9395f6b494a1db657a2
|
@@ -71,8 +71,8 @@ module Lita
|
|
71
71
|
message = ":x: Your commit failed some tests."
|
72
72
|
message += "\n#{commit_url}"
|
73
73
|
|
74
|
-
return if ["off", "only_passes"].include?(
|
75
|
-
send_dm(
|
74
|
+
return if ["off", "only_passes"].include?(committer[:travis_preferences][:frequency])
|
75
|
+
send_dm(committer[:usernames][:slack], message)
|
76
76
|
|
77
77
|
response
|
78
78
|
end
|
@@ -85,8 +85,8 @@ module Lita
|
|
85
85
|
message = ":white_check_mark: Your commit has passed its travis build."
|
86
86
|
message += "\n#{commit_url}"
|
87
87
|
|
88
|
-
return if ["off", "only_failures"].include?(
|
89
|
-
send_dm(
|
88
|
+
return if ["off", "only_failures"].include?(committer[:travis_preferences][:frequency])
|
89
|
+
send_dm(committer[:usernames][:slack], message)
|
90
90
|
|
91
91
|
response
|
92
92
|
end
|
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.6.
|
3
|
+
spec.version = "0.6.1"
|
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."
|