git_reflow 0.5.0 → 0.5.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/Gemfile.lock +1 -1
- data/lib/git_reflow/version.rb +1 -1
- data/lib/git_reflow.rb +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: b364c5682237839cb7166efcd0c673d9dbfbf8e3
|
|
4
|
+
data.tar.gz: 5ffcda3511f30d57806b66079aa152f64b8f058c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5d6d393739d7d0d719a769c27b0fcc73c17af2ddb3f3e7cdf95d9c18a8cce444e62c5ca2e03d448ada9425667ebb1c805076628cd5cca6e76b46bb0bf089311
|
|
7
|
+
data.tar.gz: a3ad1c5ff48e6681440d580d3abea4e820025fb3df5baa460268f0def9f711f54fcacdd3980f0128b65b2f7f03f1d09997e08f00f7139f279943926d470160ab
|
data/Gemfile.lock
CHANGED
data/lib/git_reflow/version.rb
CHANGED
data/lib/git_reflow.rb
CHANGED
|
@@ -77,7 +77,7 @@ module GitReflow
|
|
|
77
77
|
say "No pull request exists for #{remote_user}:#{current_branch}\nPlease submit your branch for review first with \`git reflow review\`", :deliver_halted
|
|
78
78
|
else
|
|
79
79
|
|
|
80
|
-
has_comments = git_server.has_pull_request_comments?(existing_pull_request)
|
|
80
|
+
has_comments = (git_server.has_pull_request_comments?(existing_pull_request) or git_server.approvals(existing_pull_request))
|
|
81
81
|
open_comment_authors = git_server.reviewers_pending_response(existing_pull_request)
|
|
82
82
|
status = git_server.get_build_status existing_pull_request.build_status
|
|
83
83
|
commit_message = if "#{existing_pull_request.description}".length > 0
|