gitlabci-bundle-update-mr 1.1.1.beta2 → 1.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/.gitlab-ci.yml +17 -4
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +2 -1
- data/gitlabci-bundle-update-mr.gemspec +1 -0
- data/gitlabci-templates/continuous_bundle_update.yml +1 -1
- data/lib/gitlabci/bundle/update/mr/version.rb +1 -1
- metadata +18 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d1206c8c3121aad2c45e26a171ea8dc1f4d63a63edf928c2c0461e5eee6c060
|
|
4
|
+
data.tar.gz: 37c562a6f10341664b39d6074900f801e922a207a941ba6a2a1037fa082cc9d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1946c3432b01d0de283c76e9e3cf66139e353b83cc931e2599efa0af6d7c2a4eab16de0b0688892c8212637e9a76cec3e2f12f31ed3c00ba9a585b30fce792d9
|
|
7
|
+
data.tar.gz: 2cfdbd4ef410037d08a69dbea805de4d38baf0ecece5797efeb084dee4fea40e9e7b3329fe4f375a474397c40632bbe89eb3a9bc627ebe8242a55310191f14a8
|
data/.gitlab-ci.yml
CHANGED
|
@@ -19,10 +19,6 @@ continuous_bundle_update:
|
|
|
19
19
|
# Set timezone to Asia/Tokyo
|
|
20
20
|
- cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
|
|
21
21
|
|
|
22
|
-
only:
|
|
23
|
-
- schedules
|
|
24
|
-
- web # Test for topic branch
|
|
25
|
-
|
|
26
22
|
.default:
|
|
27
23
|
cache:
|
|
28
24
|
key: "$CI_BUILD_NAME"
|
|
@@ -98,3 +94,20 @@ pages:
|
|
|
98
94
|
- public
|
|
99
95
|
only:
|
|
100
96
|
- master
|
|
97
|
+
|
|
98
|
+
gitlab_awesome_release:
|
|
99
|
+
stage: build
|
|
100
|
+
|
|
101
|
+
image: ruby:alpine
|
|
102
|
+
|
|
103
|
+
script:
|
|
104
|
+
- gem install gitlab_awesome_release --no-doc
|
|
105
|
+
- gitlab_awesome_release create_latest_note
|
|
106
|
+
|
|
107
|
+
variables:
|
|
108
|
+
GITLAB_API_ENDPOINT: $CI_API_V4_URL
|
|
109
|
+
GITLAB_PROJECT_NAME: $CI_PROJECT_PATH
|
|
110
|
+
GITLAB_API_PRIVATE_TOKEN: $GITLAB_API_PRIVATE_TOKEN
|
|
111
|
+
|
|
112
|
+
only:
|
|
113
|
+
- web
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.
|
|
2
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.1...master)
|
|
3
|
+
|
|
4
|
+
## v1.1.1
|
|
5
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.0...v1.1.1)
|
|
6
|
+
|
|
7
|
+
* Add auto retry when `merge when pipeline succeeds` is failed [!128](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/128) *@sue445*
|
|
8
|
+
* [Resolved] `open': can't modify frozen Hash: {} (FrozenError) [!131](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/131) *@sue445*
|
|
3
9
|
|
|
4
10
|
## v1.1.0
|
|
5
11
|
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.0.0...v1.1.0)
|
data/Gemfile.lock
CHANGED
|
@@ -16,7 +16,7 @@ continuous_bundle_update:
|
|
|
16
16
|
|
|
17
17
|
script:
|
|
18
18
|
- bundle install --path vendor/bundle --clean
|
|
19
|
-
- gem install --no-doc gitlabci-bundle-update-mr
|
|
19
|
+
- gem install --no-doc gitlabci-bundle-update-mr
|
|
20
20
|
- |
|
|
21
21
|
if [ -n "$ASSIGNEES" ]; then
|
|
22
22
|
OPTIONS="--assignees $ASSIGNEES $OPTIONS"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlabci-bundle-update-mr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.1
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -38,6 +38,20 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 1.4.3
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: git
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 1.7.0
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.7.0
|
|
41
55
|
- !ruby/object:Gem::Dependency
|
|
42
56
|
name: gitlab
|
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -295,9 +309,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
295
309
|
version: 2.5.0
|
|
296
310
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
297
311
|
requirements:
|
|
298
|
-
- - "
|
|
312
|
+
- - ">="
|
|
299
313
|
- !ruby/object:Gem::Version
|
|
300
|
-
version:
|
|
314
|
+
version: '0'
|
|
301
315
|
requirements: []
|
|
302
316
|
rubygems_version: 3.1.4
|
|
303
317
|
signing_key:
|