tutter-jenkins 0.0.4 → 0.0.5
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 +6 -14
- data/.gemspec +1 -1
- data/lib/tutter/action/jenkins.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
NmU1MGQ4MjdjMDFhODE4NjBkYjdkYjM4NTI5ZDhiODczN2U2ZWMxYWRkMTcw
|
|
10
|
-
NGNkMGNhOWQzZTI0NDZiZjcwMDdkZTkyNjc4OTUwNGQxZDcwY2QzZjhlNTdj
|
|
11
|
-
MjNiNjU2MDgzOWJjODllMjFmZTc4NzhiMzkxM2IwZTgyMzRhNTI=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MTMzYWNmYjMzODFhMzgzZjU2NDkwYmM3MjFhYmQxOGEzMjhmZDYwNGQ5YjMx
|
|
14
|
-
ODc3ZDY4MTU3NWMyOTgxYzE1MGUyNzYyYmMwYTBlN2FjYTI0YzdmODg5NDFl
|
|
15
|
-
YjkwZmY3MjYzMDliODZiMzNiY2FiYWQyMmRmNjRiNjUzZTNlZWE=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 9e6f5d8a6b7433827f1700b3c1519b6f155ebe56
|
|
4
|
+
data.tar.gz: cadc097bf10f85e8cadde1373bba2dc41231145b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 262757d46abf894a284185d65f2c17d16a072748c09b7bd5af547135614434726315696c6c572f1ad241526c1e8e9a63b2f4cef023885772907fee908505d506
|
|
7
|
+
data.tar.gz: bc1a9ef6721ac04d4c5af4303a03d492257a50d61bfcf73f955eef2f247c57b473f4437ce1b38c0f5c286b67d3f82f9c2f16b1263bf790e1977098508847a0e0
|
data/.gemspec
CHANGED
|
@@ -41,7 +41,7 @@ class Jenkins
|
|
|
41
41
|
return false
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
-
jenkins_last_comment = @client.issue_comments(@project, pull_request_id).select{|c| c.attrs[:user].attrs[:login] == '
|
|
44
|
+
jenkins_last_comment = @client.issue_comments(@project, pull_request_id).select{|c| c.attrs[:user].attrs[:login] == 'dnsjenkins-bot'}.last
|
|
45
45
|
jenkins_allows_merge = jenkins_last_comment && jenkins_last_comment.body =~ /PASS/
|
|
46
46
|
|
|
47
47
|
if jenkins_allows_merge
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tutter-jenkins
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexey Lapitsky
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This tutter action let non collaborators review and merge code without
|
|
14
14
|
having more then read access to the project
|
|
@@ -18,7 +18,7 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
-
- .gemspec
|
|
21
|
+
- ".gemspec"
|
|
22
22
|
- README.md
|
|
23
23
|
- lib/tutter/action/jenkins.rb
|
|
24
24
|
homepage: https://github.com/spotify/tutter-jenkins
|
|
@@ -31,19 +31,18 @@ require_paths:
|
|
|
31
31
|
- lib
|
|
32
32
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
33
|
requirements:
|
|
34
|
-
- -
|
|
34
|
+
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
36
|
version: 1.8.7
|
|
37
37
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
|
-
- -
|
|
39
|
+
- - ">="
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
41
|
version: '0'
|
|
42
42
|
requirements: []
|
|
43
43
|
rubyforge_project:
|
|
44
|
-
rubygems_version: 2.
|
|
44
|
+
rubygems_version: 2.6.8
|
|
45
45
|
signing_key:
|
|
46
46
|
specification_version: 4
|
|
47
47
|
summary: Merges pull requests if tests PASS
|
|
48
48
|
test_files: []
|
|
49
|
-
has_rdoc:
|