gitlab_support_readiness 1.0.5 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/support_readiness/gitlab/issues.rb +1 -1
- data/lib/support_readiness.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ddc2737f4d4688e9c67b209109e783eddb68c3ff6744bc8cb58ee993cf18f12
|
4
|
+
data.tar.gz: 879b0374f74b4316f8a3614719c3d8b161f84a94c465d557f99d27ebe6601e74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9895e37008578fa2f0d6c79503649e30da79dda41edf01056817ef43a12df22d7b82ed4c74221452bbea4463767f9752d6d51e6e78270516762551ddcdae7b9b
|
7
|
+
data.tar.gz: a269f08b9e16158a9993e5a4d7a77ed331b63d7d570066d7870a87e4f2863829d06aa9e7e28a420252d775dd72ac570a2aba14b9ca067b8adf400d968a900d35
|
@@ -343,7 +343,7 @@ module Readiness
|
|
343
343
|
# pp comment['updated_at']
|
344
344
|
# # => "2024-09-23T15:42:13Z"
|
345
345
|
def self.create_comment!(client, project, issue, params)
|
346
|
-
response = client.connection.post "projects/#{project.id}/issues/#{issue.id}/notes",
|
346
|
+
response = client.connection.post "projects/#{project.id}/issues/#{issue.id}/notes", params.to_json
|
347
347
|
handle_request_error(1, 'GitLab', response.status, { action: 'Create issue comment', id: issue.id }) unless response.status == 200
|
348
348
|
Oj.load(response.body)
|
349
349
|
end
|
data/lib/support_readiness.rb
CHANGED