livebuzz-gitx 0.1.0 → 0.1.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e95393877a28deae40217edaf4b8f793c7373ba2
|
4
|
+
data.tar.gz: 86b9752de05692937102a6fd82aafd12c0332e97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db889c8f63ca2fdd8f227cc62d7816ccc7cfdbfc6c6f516b00ea2d0e4bdba7d63e89a848631ce61df4b3ed6e433c4a699f06175467f48357ab131b11514f2a54
|
7
|
+
data.tar.gz: 89a29b797ba8e32881a645e341328e3ca6c24f11a360f593b77c165c0c9b99b1784d254c3dac0138aefce4e111e76672fee2e098dadb7b95d6414f4b61c2720f
|
@@ -85,9 +85,10 @@ module LiveBuzz
|
|
85
85
|
end
|
86
86
|
|
87
87
|
def create_integrate_comment(branch)
|
88
|
-
|
89
|
-
|
90
|
-
|
88
|
+
# nulled github integration
|
89
|
+
#pull_request = find_or_create_pull_request(branch)
|
90
|
+
#comment = '[gitx] integrated into staging :twisted_rightwards_arrows:'
|
91
|
+
#github_client.add_comment(github_slug, pull_request.number, comment)
|
91
92
|
end
|
92
93
|
end
|
93
94
|
end
|
@@ -21,11 +21,12 @@ module LiveBuzz
|
|
21
21
|
assert_not_protected_branch!(branch, 'release')
|
22
22
|
execute_command(UpdateCommand, :update)
|
23
23
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
# nulled github integration
|
25
|
+
#find_or_create_pull_request(branch)
|
26
|
+
#status = branch_status(branch)
|
27
|
+
#if status != 'success'
|
28
|
+
# return unless yes?("Branch status is currently: #{status}. Proceed with release? (y/n)", :red)
|
29
|
+
#end
|
29
30
|
|
30
31
|
checkout_branch LiveBuzz::Gitx::BASE_BRANCH
|
31
32
|
run_cmd "git pull origin #{LiveBuzz::Gitx::BASE_BRANCH}"
|