From 932d9d813a1c3db7b0c31e85c668ba24f63ada32 Mon Sep 17 00:00:00 2001 From: Alex Pilon Date: Thu, 27 Jun 2019 19:00:36 -0400 Subject: [PATCH] fix wrong variable reference in interpolated string --- .hashibot.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hashibot.hcl b/.hashibot.hcl index ee0c93886e..9186c1a059 100644 --- a/.hashibot.hcl +++ b/.hashibot.hcl @@ -32,5 +32,5 @@ poll "label_issue_migrater" "provider_migrater" {
EOF - migrated_comment = "This issue has been automatically migrated to ${var.repository}#${var.number} because it looks like an issue with that provider. If you believe this is _not_ an issue with the provider, please reply to ${var.repository}#${var.issue_number}." + migrated_comment = "This issue has been automatically migrated to ${var.repository}#${var.issue_number} because it looks like an issue with that provider. If you believe this is _not_ an issue with the provider, please reply to ${var.repository}#${var.issue_number}." }