Merge pull request #21926 from hashicorp/appilon/fix-hashibot-msg

[hashibot] fix wrong variable reference in interpolated string
This commit is contained in:
appilon 2019-06-27 19:09:41 -04:00 committed by GitHub
commit 445df6b132
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,5 +32,5 @@ poll "label_issue_migrater" "provider_migrater" {
<hr>
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}."
}