fastlane-plugin-create_bitbucket_pull_request 0.3.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -0
- data/lib/fastlane/plugin/create_bitbucket_pull_request/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: e1b56f556df58454ca374d0fbc2d8bfe97b678ec8897b9e0f090509f79c04ab7
|
4
|
+
data.tar.gz: 7a2abc5fe958ae7ec0c6b82e4ef9ff9c3b97e9d9ece6ce1e43e73d061af831bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e03969222fd9722de9bf882fa0f256b48baa654cad0a86312d54a7fac66c7e50b6c0333833e44d3300cb77a8f2e871338b8a49837bedd5d0064db03ae2e043ca
|
7
|
+
data.tar.gz: 37ea5dc0ee7e81191dee8f527a387731a5046522832d640b282386d051c2ea87c79a5e7db4759b7d554d12ea04f64d4ba99d5a02b1b67ff0e449a80cdb8b2093
|
data/README.md
CHANGED
@@ -20,6 +20,19 @@ This lane creates create bitbucket pull request
|
|
20
20
|
|
21
21
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
22
|
|
23
|
+
## Options
|
24
|
+
|
25
|
+
| Key | Description | ENV VARIABLE | Default |
|
26
|
+
|-------------|-------------------------------------------------------------------|------------------------------------------------|---------|
|
27
|
+
| head | The name of the branch where your changes are implemented | CREATE_BITBUCKET_PULL_REQUEST_HEAD | |
|
28
|
+
| target | The name of the branch you want your changes pulled into | CREATE_BITBUCKET_PULL_REQUEST_TARGET | |
|
29
|
+
| owner | The name of the repository owner (slug) | CREATE_BITBUCKET_PULL_REQUEST_REPOSITORY_OWNER | |
|
30
|
+
| repository | The name of the repository you want to submit the pull request to | CREATE_BITBUCKET_PULL_REQUEST_REPOSITORY_NAME | |
|
31
|
+
| title | The title of the pull request | CREATE_BITBUCKET_PULL_REQUEST_TITLE | |
|
32
|
+
| description | The contents of the pull request | CREATE_BITBUCKET_PULL_REQUEST_DESCRIPTION | |
|
33
|
+
| username | The Bitbucket username (email) | CREATE_BITBUCKET_PULL_REQUEST_USERNAME | |
|
34
|
+
| password | The Bitbucket password | CREATE_BITBUCKET_PULL_REQUEST_PASSWORD | |
|
35
|
+
|
23
36
|
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
37
|
|
25
38
|
## Run tests for this plugin
|