2019-06-18 04:59:27 +02:00
behavior "regexp_issue_labeler" "panic_label" {
2020-05-04 23:40:17 +02:00
regexp = "panic:"
labels = [ "crash", "bug" ]
2019-06-18 04:59:27 +02:00
}
behavior "remove_labels_on_reply" "remove_stale" {
2020-05-04 23:40:17 +02:00
labels = [ "waiting-response", "stale" ]
only_non_maintainers = true
2019-06-18 04:59:27 +02:00
}
poll "label_issue_migrater" "provider_migrater" {
2020-05-04 23:40:17 +02:00
schedule = "0 20 * * * *"
new_owner = env . PROVIDERS_OWNER
repo_prefix = "terraform-provider-"
label_prefix = "provider/"
excluded_label_prefixes = [ "backend/", "provisioner/" ]
excluded_labels = [ "build", "cli", "config", "core", "new-provider", "new-provisioner", "new-remote-state", "provider/terraform" ]
aliases = {
"provider/google-cloud" = "provider/google"
"provider/influx" = "provider/influxdb"
"provider/vcloud" = "provider/vcd"
}
issue_header = < < - EOF
2019-07-03 01:46:00 +02:00
_This issue was originally opened by @ ${ v a r . u s e r } as ${ v a r . r e p o s i t o r y } #${var.issue_number}. It was migrated here as a result of the [provider split](https://www.hashicorp.com/blog/upcoming-provider-changes-in-terraform-0-10/). The original body of the issue is below._
2019-06-18 04:59:27 +02:00
< hr >
EOF
2020-05-04 23:40:17 +02:00
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}."
2019-06-18 05:01:10 +02:00
}
2019-07-23 17:50:18 +02:00
poll "closed_issue_locker" "locker" {
2020-05-04 23:40:17 +02:00
schedule = "0 50 1 * * *"
closed_for = "720h" # 30 days
no_comment_if_no_activity_for = "1440h" # 60 days
max_issues = 500
sleep_between_issues = "5s"
2019-07-23 17:50:18 +02:00
message = < < - EOF
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 .
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 .
EOF
}