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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ec9c52da56b9366688003f7abd69bba57113a28e705774cb35722ea049786c1
|
4
|
+
data.tar.gz: a90673f04c1a7eb001e4ce1b5bd47378a6d859b28dc9735920605858e0b46a34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d9ba476fcf5b5746827a8cc5116c25d3cdc4fcdaffc91031ed35d1af4d0bb3d4e87f5695c4817fbcfa60a89811ab502be60bb21a145132ac791efdd09637921
|
7
|
+
data.tar.gz: 4133bcdc5ed2589d24c575efae65a3f538641cc896950b62e20266e4aef4cbfcf9fc4e9c546c8f1fa9029e011b28303bb401285e50aee4d4fc01e650e543babf
|
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.
|
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
|