github.com/hashicorp/terraform-plugin-sdk@v1.17.2/.hashibot.hcl (about) 1 behavior "remove_labels_on_reply" "remove_stale" { 2 labels = ["waiting-response", "stale"] 3 only_non_maintainers = true 4 } 5 6 poll "label_issue_migrater" "provider_migrater" { 7 schedule = "0 40 * * * *" 8 new_owner = env.PROVIDERS_OWNER 9 repo_prefix = "terraform-provider-" 10 label_prefix = "provider/" 11 issue_header = <<-EOF 12 _This issue was originally opened by @${var.user} as ${var.repository}#${var.issue_number}. The original body of the issue is below._ 13 14 <hr> 15 16 EOF 17 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}." 18 } 19 20 poll "closed_issue_locker" "locker" { 21 schedule = "0 50 1 * * *" 22 closed_for = "720h" # 30 days 23 max_issues = 500 24 sleep_between_issues = "5s" 25 26 message = <<-EOF 27 I'm going to lock this issue because it has been closed for _30 days_ ⏳. This helps our maintainers find and focus on the active issues. 28 29 If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. 30 EOF 31 }