From 989869710d608cad94472ce614dd874d7c347bf9 Mon Sep 17 00:00:00 2001 From: Kieran <kshannon@duckduckgo.com> Date: Thu, 21 Nov 2024 23:07:14 +1100 Subject: [PATCH] revert test values --- .../plugin/ddg_apple_automation/helper/asana_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/fastlane/plugin/ddg_apple_automation/helper/asana_helper.rb b/lib/fastlane/plugin/ddg_apple_automation/helper/asana_helper.rb index b9a8535..d6492bb 100644 --- a/lib/fastlane/plugin/ddg_apple_automation/helper/asana_helper.rb +++ b/lib/fastlane/plugin/ddg_apple_automation/helper/asana_helper.rb @@ -20,11 +20,11 @@ class AsanaHelper # rubocop:disable Metrics/ClassLength IOS_HOTFIX_TASK_TEMPLATE_ID = "1205352950253153" IOS_RELEASE_TASK_TEMPLATE_ID = "1205355281110338" - MACOS_HOTFIX_TASK_TEMPLATE_ID = "1208772396197846" # Todo revert "1206724592377782" + MACOS_HOTFIX_TASK_TEMPLATE_ID = "1206724592377782" MACOS_RELEASE_TASK_TEMPLATE_ID = "1206127427850447" IOS_APP_DEVELOPMENT_RELEASE_SECTION_ID = "1138897754570756" - MACOS_APP_DEVELOPMENT_RELEASE_SECTION_ID = "1208772987727988" # TODO: revert "1202202395298964" + MACOS_APP_DEVELOPMENT_RELEASE_SECTION_ID = "1202202395298964" INCIDENTS_PARENT_TASK_ID = "1135688560894081" CURRENT_OBJECTIVES_PROJECT_ID = "72649045549333" @@ -145,7 +145,7 @@ def self.release_task_name(version, platform, is_hotfix) when "ios" is_hotfix ? "iOS App Hotfix Release #{version}" : "iOS App Release #{version}" when "macos" - is_hotfix ? "[TEST] macOS App Hotfix Release #{version}" : "macOS App Release #{version}" + is_hotfix ? "macOS App Hotfix Release #{version}" : "macOS App Release #{version}" else UI.user_error!("Unsupported platform: #{platform}") end