Skip to content

Commit

Permalink
revert test values
Browse files Browse the repository at this point in the history
  • Loading branch information
kshann committed Nov 21, 2024
1 parent d9e63d9 commit 9898697
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9898697

Please sign in to comment.