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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b09eafbff0b7cff6f4664134ac1ee16a3ef6ea125260d1ecce4b7711c0bf2c5
4
- data.tar.gz: 2bc3007e3ebd7714e9314204f407d261c3e23fc39103d6a59501982979d37c71
3
+ metadata.gz: e1b56f556df58454ca374d0fbc2d8bfe97b678ec8897b9e0f090509f79c04ab7
4
+ data.tar.gz: 7a2abc5fe958ae7ec0c6b82e4ef9ff9c3b97e9d9ece6ce1e43e73d061af831bd
5
5
  SHA512:
6
- metadata.gz: 38086db1254f651e09508d05120fddb6dee28aa955ec570517603a5f841a10133a8e2c8c725738c450be21ea022895472909a54585747a566331e7d4bb6006eb
7
- data.tar.gz: f49ccc4e4bbf03554326d61b38caaa9651c91356e954fd703f28e1981bc42b0e1f972b367c4a7ffa565287aad6c79b931d4275ec1834e99dcb96524bd4bded78
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module CreateBitbucketPullRequest
3
- VERSION = '0.3.0'
3
+ VERSION = '1.0.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-create_bitbucket_pull_request
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Issarapong Poesua