diff --git a/lib/fastlane/plugin/ddg_apple_automation/actions/tag_release_action.rb b/lib/fastlane/plugin/ddg_apple_automation/actions/tag_release_action.rb index 50207c6..d8b81f3 100644 --- a/lib/fastlane/plugin/ddg_apple_automation/actions/tag_release_action.rb +++ b/lib/fastlane/plugin/ddg_apple_automation/actions/tag_release_action.rb @@ -110,6 +110,7 @@ def self.create_tag_and_github_release(is_prerelease, github_token) end def self.report_status(params) + UI.message("Reporting status to Asana using params: #{params}") template_args = {} template_args['tag'] = params[:tag] template_args['promoted_tag'] = params[:promoted_tag] diff --git a/lib/fastlane/plugin/ddg_apple_automation/helper/git_helper.rb b/lib/fastlane/plugin/ddg_apple_automation/helper/git_helper.rb index f766d73..fd1df0c 100644 --- a/lib/fastlane/plugin/ddg_apple_automation/helper/git_helper.rb +++ b/lib/fastlane/plugin/ddg_apple_automation/helper/git_helper.rb @@ -32,6 +32,7 @@ def self.merge_branch(repo_name, branch, base_branch, github_token) client = Octokit::Client.new(access_token: github_token) begin client.merge(repo_name, base_branch, branch) + UI.success("Merged #{branch} branch to #{base_branch}") rescue StandardError => e UI.important("Failed to merge #{branch} branch to #{base_branch}: #{e}") raise e @@ -42,6 +43,7 @@ def self.delete_branch(repo_name, branch, github_token) client = Octokit::Client.new(access_token: github_token) begin client.delete_branch(repo_name, branch) + UI.success("Deleted #{branch}") rescue StandardError => e UI.important("Failed to delete #{branch}: #{e}") raise e