Class: Fastlane::Actions::GithubDeleteLabelAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb

Documentation collapse

Class Method Summary collapse

Class Method Details

.authorsObject



139
140
141
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 139

def authors
  ["crazymanish"]
end

.available_optionsObject



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 83

def available_options
  [
    FastlaneCore::ConfigItem.new(key: :api_token,
                            env_name: "GITHUB_API_TOKEN",
                         description: "GitHub API token with repo permissions",
                            optional: false,
                                type: String,
                           sensitive: true,
                  code_gen_sensitive: true,
                       default_value: ENV["GITHUB_API_TOKEN"],
                       verify_block: proc do |value|
                          UI.user_error!("No GitHub API token given, pass using `api_token: 'token'`") if value.to_s.empty?
                        end),
    FastlaneCore::ConfigItem.new(key: :server_url,
                         env_name: "GITHUB_API_SERVER_URL",
                      description: "GitHub API server URL",
                         optional: true,
                    default_value: "https://api.github.com"),
    FastlaneCore::ConfigItem.new(key: :repo_owner,
                         env_name: "GITHUB_API_REPO_OWNER",
                      description: "Repository owner (organization or username)",
                            optional: false,
                                type: String,
                       verify_block: proc do |value|
                          UI.user_error!("No repository owner provided, pass using `repo_owner: 'owner'`") if value.to_s.empty?
                        end),
    FastlaneCore::ConfigItem.new(key: :repo_name,
                         env_name: "GITHUB_API_REPO_NAME",
                         description: "Repository name",
                            optional: false,
                                type: String,
                       verify_block: proc do |value|
                          UI.user_error!("No repository name provided, pass using `repo_name: 'name'`") if value.to_s.empty?
                        end),
    FastlaneCore::ConfigItem.new(key: :name,
                         description: "The name of the label to delete",
                            optional: false,
                                type: String,
                       verify_block: proc do |value|
                          UI.user_error!("No label name provided, pass using `name: 'bug'`") if value.to_s.empty?
                        end)
  ]
end

.categoryObject



154
155
156
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 154

def category
  :source_control
end

.descriptionObject



71
72
73
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 71

def description
  "Deletes a label from a GitHub repository"
end

.detailsObject



75
76
77
78
79
80
81
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 75

def details
  [
    "This action deletes a label from a GitHub repository by its name.",
    "It requires a valid GitHub API token with appropriate permissions.",
    "Documentation: [https://docs.github.com/en/rest/issues/labels](https://docs.github.com/en/rest/issues/labels#delete-a-label)"
  ].join("\n")
end

.example_codeObject



143
144
145
146
147
148
149
150
151
152
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 143

def example_code
  [
    'github_delete_label(
      api_token: ENV["GITHUB_API_TOKEN"],
      repo_owner: "fastlane",
      repo_name: "fastlane",
      name: "wontfix"
    )'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


158
159
160
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 158

def is_supported?(platform)
  true
end

.outputObject



127
128
129
130
131
132
133
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 127

def output
  [
    ['GITHUB_DELETE_LABEL_STATUS_CODE', 'The status code returned from the GitHub API'],
    ['GITHUB_DELETE_LABEL_RESPONSE', 'The full response from the GitHub API'],
    ['GITHUB_DELETE_LABEL_JSON', 'The JSON data returned from the GitHub API']
  ]
end

.return_valueObject



135
136
137
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 135

def return_value
  "A hash including the HTTP status code (:status), the response body (:body), and the parsed JSON (:json)."
end

.run(params) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/fastlane/plugin/github_api/actions/github_delete_label_action.rb', line 14

def run(params)
  token = params[:api_token]
  repo_owner = params[:repo_owner]
  repo_name = params[:repo_name]
  label_name = params[:name]
  server_url = params[:server_url]
  
  # Validate parameters (additional validation beyond what's in ConfigItem)
  UI.user_error!("No label name provided, pass using `name: 'bug'`") if label_name.to_s.empty?
  
  # Prepare request parameters
  # URL encode the label name to handle special characters like spaces, etc.
  encoded_label = URI.encode_www_form_component(label_name)
  path = "/repos/#{repo_owner}/#{repo_name}/labels/#{encoded_label}"
  
  # Make the request
  UI.message("Deleting label '#{label_name}' from #{repo_owner}/#{repo_name}")
  response = Helper::GithubApiHelper.github_api_request(
    token: token,
    path: path,
    method: :delete,
    server_url: server_url
  )
  
  status_code = response.key?('status') ? response['status'] : nil
  result = {
    status: status_code,
    body: response,
    json: response
  }
  
  if response.key?('error')
    UI.error("GitHub responded with an error: #{response['error']}")
    UI.user_error!("GitHub API error: #{response['error']}")
    return nil
  end
  
  if response.is_a?(Hash) && response['message'] && status_code && status_code >= 400
    UI.error("GitHub API error: #{response['message']}")
    UI.user_error!("GitHub API error: #{response['message']} (Status code: #{status_code})")
    return nil
  end
  
  UI.success("Successfully deleted label '#{label_name}' from #{repo_owner}/#{repo_name}")
  
  # Set the shared values
  Actions.lane_context[SharedValues::GITHUB_DELETE_LABEL_STATUS_CODE] = status_code
  Actions.lane_context[SharedValues::GITHUB_DELETE_LABEL_RESPONSE] = response
  Actions.lane_context[SharedValues::GITHUB_DELETE_LABEL_JSON] = response
  
  return result
end