fastlane-plugin-github_api 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 947ea3487baf1fbe76b5fa9a3f462e0365a10e48bb74c8d9f43371c0d06655b5
4
- data.tar.gz: ea5ea8918a0d96a7473237c78c4d494a30f97a803f2373304c34c4f86faf4ca2
3
+ metadata.gz: 1ec9c52da56b9366688003f7abd69bba57113a28e705774cb35722ea049786c1
4
+ data.tar.gz: a90673f04c1a7eb001e4ce1b5bd47378a6d859b28dc9735920605858e0b46a34
5
5
  SHA512:
6
- metadata.gz: efbb25d320acedb8f0c0f64d3bc78e4dff74a1e2a752dd4686e276e9b7512ebffd7f5c6ac223aed59672a149e23b216685903182351f065a15b037f37c34cfde
7
- data.tar.gz: 208b6487a169c528df9aaf3d85875e71e1a1fdcf00eb346d56c43da81f7679bebab5fe38030932f6656c60c892f2577e7d0ba66d309fb5cf398d24c637501558
6
+ metadata.gz: 3d9ba476fcf5b5746827a8cc5116c25d3cdc4fcdaffc91031ed35d1af4d0bb3d4e87f5695c4817fbcfa60a89811ab502be60bb21a145132ac791efdd09637921
7
+ data.tar.gz: 4133bcdc5ed2589d24c575efae65a3f538641cc896950b62e20266e4aef4cbfcf9fc4e9c546c8f1fa9029e011b28303bb401285e50aee4d4fc01e650e543babf
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GithubApi
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-github_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manish Rathi
@@ -22,7 +22,6 @@ files:
22
22
  - lib/fastlane/plugin/github_api/actions/github_add_assignees_action.rb
23
23
  - lib/fastlane/plugin/github_api/actions/github_add_issue_comment_action.rb
24
24
  - lib/fastlane/plugin/github_api/actions/github_add_labels_action.rb
25
- - lib/fastlane/plugin/github_api/actions/github_api_action.rb
26
25
  - lib/fastlane/plugin/github_api/actions/github_check_pull_merged_action.rb
27
26
  - lib/fastlane/plugin/github_api/actions/github_create_commit_comment_reaction_action.rb
28
27
  - lib/fastlane/plugin/github_api/actions/github_create_issue_action.rb
@@ -1,47 +0,0 @@
1
- require 'fastlane/action'
2
- require_relative '../helper/github_api_helper'
3
-
4
- module Fastlane
5
- module Actions
6
- class GithubApiAction < Action
7
- def self.run(params)
8
- UI.message("The github_api plugin is working!")
9
- end
10
-
11
- def self.description
12
- "A fastlane plugin forGitHub APIs."
13
- end
14
-
15
- def self.authors
16
- ["crazymanish"]
17
- end
18
-
19
- def self.return_value
20
- # If your method provides a return value, you can describe here what it does
21
- end
22
-
23
- def self.details
24
- # Optional:
25
- "A fastlane plugin forGitHub APIs. 🚀"
26
- end
27
-
28
- def self.available_options
29
- [
30
- # FastlaneCore::ConfigItem.new(key: :your_option,
31
- # env_name: "GITHUB_API_YOUR_OPTION",
32
- # description: "A description of your option",
33
- # optional: false,
34
- # type: String)
35
- ]
36
- end
37
-
38
- def self.is_supported?(platform)
39
- # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
40
- # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
41
- #
42
- # [:ios, :mac, :android].include?(platform)
43
- true
44
- end
45
- end
46
- end
47
- end