terraspace_ci_gitlab 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 +4 -4
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +1 -1
- data/lib/terraspace_ci_gitlab/pr.rb +2 -0
- data/lib/terraspace_ci_gitlab/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df8bbf3488f5d4bd411233ee3a9deff303edac1b77afddd8145e82e9504dc75a
|
|
4
|
+
data.tar.gz: 14aaf4b6a9404d95502ffea219ff321ba5f67bf5fb748ce30ffab6910d218ba8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 522823eeea04b9482b8a85e1c32655c4fc8a3506f423171453ffb4506c032a9810f69b7becd2a50c519209950ba3fc39f9ba3c6fa58d444c6c00f40834f66e3f
|
|
7
|
+
data.tar.gz: 450b9d19888c728e936b296aa89a61b174e6be70dffe4e7a91432e3f43dfb93490bfd3db195972d394eec0084ca930767cd22000ebd832084f93da2bd717527b
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.1.1] - 2022-06-14
|
|
7
|
+
- [#1](https://github.com/boltops-tools/terraspace_ci_gitlab/pull/1) handle Gitlab::Error::Forbidden error
|
|
8
|
+
|
|
6
9
|
## [0.1.0] - 2022-06-09
|
|
7
10
|
|
|
8
11
|
- Initial release
|
data/LICENSE.txt
CHANGED
|
@@ -37,6 +37,8 @@ module TerraspaceCiGitlab
|
|
|
37
37
|
end
|
|
38
38
|
rescue Gitlab::Error::Unauthorized => e
|
|
39
39
|
puts "WARN: #{e.message}. Unable to create merge request comment. Please double check your gitlab token"
|
|
40
|
+
rescue Gitlab::Error::Forbidden => e
|
|
41
|
+
puts "WARN: #{e.message}. Unable to create merge request comment. The token does not have the permission. Please double check your gitlab token"
|
|
40
42
|
end
|
|
41
43
|
|
|
42
44
|
def client
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: terraspace_ci_gitlab
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-06-
|
|
11
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gitlab
|