hashibot: disable most of hashibot (#7139)

This commit is contained in:
Hans Hasselberg 2020-01-27 13:57:00 +01:00 committed by GitHub
parent 3ed5c8546d
commit d74f605f5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 44 additions and 44 deletions

View File

@ -7,47 +7,47 @@ behavior "remove_labels_on_reply" "remove_stale" {
labels = ["waiting-reply"] labels = ["waiting-reply"]
} }
poll "closed_issue_locker" "locker" { # poll "closed_issue_locker" "locker" {
schedule = "0 50 1 * * *" # schedule = "0 50 1 * * *"
closed_for = "720h" # 30 days # closed_for = "720h" # 30 days
max_issues = 250 # max_issues = 250
sleep_between_issues = "1m" # sleep_between_issues = "1m"
#
message = <<-EOF # message = <<-EOF
Hey there, # Hey there,
#
This issue has been automatically locked because it is closed and there hasn't been any activity for at least _30_ days. # This issue has been automatically locked because it is closed and there hasn't been any activity for at least _30_ days.
#
If you are still experiencing problems, or still have questions, feel free to [open a new one](https://github.com/hashicorp/consul/issues/new) :+1:. # If you are still experiencing problems, or still have questions, feel free to [open a new one](https://github.com/hashicorp/consul/issues/new) :+1:.
EOF # EOF
} # }
#
poll "stale_issue_closer" "stale_closer" { # poll "stale_issue_closer" "stale_closer" {
schedule = "0 22 23 * * *" # schedule = "0 22 23 * * *"
no_reply_in_last = "480h" # 20 days # no_reply_in_last = "480h" # 20 days
max_issues = 250 # max_issues = 250
sleep_between_issues = "1m" # sleep_between_issues = "1m"
labels = ["waiting-reply"] # labels = ["waiting-reply"]
message = <<-EOF # message = <<-EOF
Hey there, # Hey there,
#
This issue has been automatically closed because there hasn't been any activity for at least _20_ days. # This issue has been automatically closed because there hasn't been any activity for at least _20_ days.
#
If you are still experiencing problems, or still have questions, feel free to [open a new one](https://github.com/hashicorp/consul/issues/new) :+1:. # If you are still experiencing problems, or still have questions, feel free to [open a new one](https://github.com/hashicorp/consul/issues/new) :+1:.
EOF # EOF
} # }
#
poll "stale_issue_closer" "close_closer" { # poll "stale_issue_closer" "close_closer" {
schedule = "0 50 2 * * *" # schedule = "0 50 2 * * *"
no_reply_in_last = "1m" # hack to close issue with that label immediately. # no_reply_in_last = "1m" # hack to close issue with that label immediately.
max_issues = 250 # max_issues = 250
sleep_between_issues = "1m" # sleep_between_issues = "1m"
labels = ["close-issue"] # labels = ["close-issue"]
message = <<-EOF # message = <<-EOF
Hey there, # Hey there,
#
This issue has been automatically closed because it was labled with `close-issue`. # This issue has been automatically closed because it was labled with `close-issue`.
#
If you are still experiencing problems, or still have questions, feel free to [open a new one](https://github.com/hashicorp/consul/issues/new) :+1:. # If you are still experiencing problems, or still have questions, feel free to [open a new one](https://github.com/hashicorp/consul/issues/new) :+1:.
EOF # EOF
} # }