From 04b8e0381e3d49a4a4a0f17e111386385bf4ffbb Mon Sep 17 00:00:00 2001 From: Ben Henning Date: Fri, 19 Nov 2021 11:40:50 -0800 Subject: [PATCH] Set up vacation bot & enable it for the next two weeks (#3999) * Set up vacation bot * Update CODEOWNERS Define codeowners for .devbots directory. * Update vacation.yml Address reviewer comment. --- .devbots/vacation.yml | 12 ++++++++++++ .github/CODEOWNERS | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 .devbots/vacation.yml diff --git a/.devbots/vacation.yml b/.devbots/vacation.yml new file mode 100644 index 00000000000..8fff28f80de --- /dev/null +++ b/.devbots/vacation.yml @@ -0,0 +1,12 @@ +# Reference: https://devbots.xyz/documentation/vacation/. +enabled: true +pull-comment: > + Thanks for submitting this pull request! Some main reviewers + have taken time off for the next few weeks, so it may take a + little while before we can look at this PR. We appreciate your + patience while some of our team members recharge. +issue-comment: > + Thanks for filing this issue! Please note that some team members + are currently taking time off to recharge, so it might be a + while before we respond to or triage this issue. +period: 2021-11-19 - 2021-12-06 diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0f6d464f4a1..ccc8ec65943 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -47,6 +47,9 @@ gradlew.bat @BenHenning /.github/workflows/ @BenHenning /.github/stale.yml @BenHenning +# Devbots configurations. +/.devbots/ @BenHenning + # All tests. *Test.kt @anandwana001