fix wrong variable reference in interpolated string

This commit is contained in:
Alex Pilon 2019-06-27 19:00:36 -04:00
parent df18843303
commit 932d9d813a
No known key found for this signature in database
GPG Key ID: 95659F6AEFC48D7E
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}."
}