gitlabci-bundle-update-mr 5.1.0.beta1 → 5.1.0
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 +11 -1
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/exe/gitlabci-bundle-update-mr +5 -1
- data/lib/gitlabci/bundle/update/mr/version.rb +1 -1
- 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: 8aca5941da45bdd58c50b8b80f042f54c9938ecf9b9a707bea62e1b0ba616e25
|
4
|
+
data.tar.gz: 57e30cfb698a4f082d9043017c909c41a37b5c4af44ec3787c33ffd94bda8a31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fc7f885f8874d20526d1160b931a924cced137c5295df85c957422ebe158b3c0c3bf2bd121c5347caacaad3dc0618d2efad554c14d09637562c78c419d1a037
|
7
|
+
data.tar.gz: 2e75381611d70e064194d319186cd4a7882deee2c8bc30a498c1b5295f465e3529461ced7fa56f5a6806ef6c7a8266b8e94f530de95716ffef7e7d7b5fb5a468
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
## Unreleased
|
2
|
-
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.0
|
2
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.1.0...master)
|
3
|
+
|
4
|
+
## v5.1.0
|
5
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.0.2...v5.1.0)
|
6
|
+
|
7
|
+
* Pass both `merge_when_pipeline_succeeds` and `auto_merge` to Merge a merge request API
|
8
|
+
* https://gitlab.com/sue445/gitlabci-bundle-update-mr/-/merge_requests/368
|
9
|
+
* Add gitlabci-components/continuous_bundle_update.yml
|
10
|
+
* https://gitlab.com/sue445/gitlabci-bundle-update-mr/-/merge_requests/364
|
11
|
+
* Tweak cli description
|
12
|
+
* https://gitlab.com/sue445/gitlabci-bundle-update-mr/-/merge_requests/370
|
3
13
|
|
4
14
|
## v5.0.2
|
5
15
|
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.0.1...v5.0.2)
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -166,7 +166,7 @@ Usage: gitlabci-bundle-update-mr [options]
|
|
166
166
|
-l, --labels 'In Review, Update' Add labels to the MR
|
167
167
|
--update-bundled-with Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)
|
168
168
|
--merge-when-pipeline-succeeds
|
169
|
-
Whether to set 'Merge when pipeline succeeds' (default. false)
|
169
|
+
Whether to set 'Auto-merge' (formerly 'Merge when pipeline succeeds') (default. false)
|
170
170
|
--assignees 'foo, bar' Add assignees to the MR
|
171
171
|
```
|
172
172
|
|
@@ -18,7 +18,11 @@ opt.on("--user USER", "git username (default. `git config user.name`)") {|v| aut
|
|
18
18
|
opt.on("-d", "--duplicate", "Make MR even if it has already existed (default. false)") {|v| allow_dup_mr = v }
|
19
19
|
opt.on("-l", "--labels 'In Review, Update'", Array, "Add labels to the MR") {|v| mr_labels = v.map(&:strip) }
|
20
20
|
opt.on("--update-bundled-with", "Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)") {|v| update_bundled_with = v }
|
21
|
-
|
21
|
+
|
22
|
+
opt.on("--merge-when-pipeline-succeeds", "Whether to set 'Auto-merge' (formerly 'Merge when pipeline succeeds') (default. false)") do |v|
|
23
|
+
merge_when_pipeline_succeeds = v
|
24
|
+
end
|
25
|
+
|
22
26
|
opt.on("--assignees 'foo, bar'", Array, "Add assignees to the MR") {|v| assignees = v.map(&:strip) }
|
23
27
|
|
24
28
|
opt.parse!(ARGV)
|