fastlane-plugin-create_merge_request 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/README.md +23 -22
- data/lib/fastlane/plugin/create_merge_request/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e0fc39e482eae94822ea6a22348f6c1e70ff47f5299d42c7c0e63d76dcda3c5
|
4
|
+
data.tar.gz: 611c8f259a5cb054565916acdea2776e53b80630e1d2202f3527f0e78dceff3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f862cedf71707d05624954c8336eed02cca3481bc09caa661b9d810cc1336b96698eb676fe5758577413e58ef613eb5f29102f461d97400ff5f2437ac120febb
|
7
|
+
data.tar.gz: 3e53d08dcd2ad062277c65867409f636d5a5ece3e4eed4e51c747ba9335c2fb9dd03465c69870d1486eb44cc2e0c7698fe31320399dadf3279e0134bb5e2c672
|
data/README.md
CHANGED
@@ -1,38 +1,39 @@
|
|
1
|
-
# create_merge_request plugin
|
1
|
+
# create_merge_request `fastlane` plugin
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-create_merge_request)
|
4
4
|
|
5
|
-
## Getting Started
|
6
|
-
|
7
|
-
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-create_merge_request`, add it to your project by running:
|
8
|
-
|
9
|
-
```bash
|
10
|
-
fastlane add_plugin create_merge_request
|
11
|
-
```
|
12
5
|
|
13
6
|
## About create_merge_request
|
14
7
|
|
15
|
-
|
8
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin.
|
16
9
|
|
17
|
-
|
18
|
-
|
19
|
-
## Example
|
10
|
+
This will create a new merge request on GitLab.
|
20
11
|
|
21
|
-
|
12
|
+
## Getting Started
|
22
13
|
|
23
|
-
|
14
|
+
To get started with `fastlane-plugin-create_merge_request`, add it to your project by running:
|
24
15
|
|
25
|
-
|
16
|
+
```bash
|
17
|
+
fastlane add_plugin create_merge_request
|
18
|
+
```
|
26
19
|
|
27
|
-
To run both the tests, and code style validation, run
|
28
20
|
|
29
|
-
|
30
|
-
rake
|
31
|
-
```
|
21
|
+
## Example
|
32
22
|
|
33
|
-
|
34
|
-
|
35
|
-
|
23
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins`.
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
create_merge_request(
|
27
|
+
api_token: "secret",
|
28
|
+
project_id: "1000", # Gitlab Project ID
|
29
|
+
title: "Amazing new feature",
|
30
|
+
body: "Please pull this in!", # optional
|
31
|
+
source: "branch_name", # optional Name of the branch where your changes are implemented (defaults to the current branch name)
|
32
|
+
target: "develop", # optional Name of the branch you want your changes pulled into (defaults to `master`)
|
33
|
+
assignee_id: "1773700", # optional Assignee user ID
|
34
|
+
labels: "bot", # optional Labels for MR as a comma-separated list
|
35
|
+
api_url: "http://yourdomain/api/v4" # optional, for GitLab self-host, defaults to "https://gitlab.com/api/v4"
|
36
|
+
)
|
36
37
|
```
|
37
38
|
|
38
39
|
## Issues and Feedback
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-create_merge_request
|
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
|
- masashi mizuno
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-08-
|
11
|
+
date: 2019-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -169,5 +169,5 @@ requirements: []
|
|
169
169
|
rubygems_version: 3.0.4
|
170
170
|
signing_key:
|
171
171
|
specification_version: 4
|
172
|
-
summary:
|
172
|
+
summary: This will create a new merge request on GitLab.
|
173
173
|
test_files: []
|