From b1df82947f247a5ce6fc9027bacc97e00bf15f53 Mon Sep 17 00:00:00 2001 From: Rainer Halanek <61878316+rahalan@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:36:37 +0100 Subject: [PATCH] Change wording in issue comment (#1134) According to @matebarabas , no hardcoded SLA should be in the response. Now changed to a link to the support agreement. --- .../pipelines/platform/Set-AvmGitHubIssueOwnerConfig.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avm/utilities/pipelines/platform/Set-AvmGitHubIssueOwnerConfig.ps1 b/avm/utilities/pipelines/platform/Set-AvmGitHubIssueOwnerConfig.ps1 index 9e24fd99ee..c9b243ef20 100644 --- a/avm/utilities/pipelines/platform/Set-AvmGitHubIssueOwnerConfig.ps1 +++ b/avm/utilities/pipelines/platform/Set-AvmGitHubIssueOwnerConfig.ps1 @@ -132,7 +132,7 @@ A member of the @azure/$($module.ModuleOwnersGHTeam) or @azure/$($module.ModuleC if ([String]::IsNullOrEmpty($assign)) { if ($PSCmdlet.ShouldProcess("missing user comment to issue [$($issue.title)]", 'Add')) { - $reply = "This issue couldn't be assigend due to an internal error. @$($module.PrimaryModuleOwnerGHHandle), please make sure this issue is assigned to you and please provide an initial response within 5 business days." + $reply = "This issue couldn't be assigend due to an internal error. @$($module.PrimaryModuleOwnerGHHandle), please make sure this issue is assigned to you and please provide an initial response as soon as possible, in accordance with the [AVM Support statement](https://aka.ms/AVM/Support)." gh issue comment $issue.url --body $reply --repo $Repo } }