From 10dcdc19427e5669dc588e71cca35f8078255b3f Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Fri, 22 Apr 2022 14:10:10 -0500 Subject: [PATCH 1/4] add ops-bot config and CODEOWNERS file --- .github/CODEOWNERS | 10 ++++++++++ .github/ops-bot.yaml | 8 ++++++++ 2 files changed, 18 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/ops-bot.yaml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..4093659c52 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,10 @@ +# Default Approval rule if one of the later sections does not apply +* @BartleyR @mdemoret-nv @pdmack @raykallen + +# Engineering is requried for changes to the following +/morpheus/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv +/cmake/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv +/tests/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv + +# Data Science is requried for changes to `models` +/models/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @raykallen @gbatmaz @tzemicheal diff --git a/.github/ops-bot.yaml b/.github/ops-bot.yaml new file mode 100644 index 0000000000..586b0adf7f --- /dev/null +++ b/.github/ops-bot.yaml @@ -0,0 +1,8 @@ +# This file controls which features from the `ops-bot` repository below are enabled. +# - https://github.com/rapidsai/ops-bot + +auto_merger: true +branch_checker: true +label_checker: true +release_drafter: true +external_contributors: false \ No newline at end of file From ec9b7037293019a55218114db2dfb122d2110123 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Fri, 22 Apr 2022 14:14:05 -0500 Subject: [PATCH 2/4] mv issue templates to .github dir --- {.gitlab/issue_templates => .github/ISSUE_TEMPLATE}/bug_report.md | 0 .../ISSUE_TEMPLATE}/documentation-request.md | 0 .../issue_templates => .github/ISSUE_TEMPLATE}/feature_request.md | 0 .../issue_templates => .github/ISSUE_TEMPLATE}/submit-question.md | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename {.gitlab/issue_templates => .github/ISSUE_TEMPLATE}/bug_report.md (100%) rename {.gitlab/issue_templates => .github/ISSUE_TEMPLATE}/documentation-request.md (100%) rename {.gitlab/issue_templates => .github/ISSUE_TEMPLATE}/feature_request.md (100%) rename {.gitlab/issue_templates => .github/ISSUE_TEMPLATE}/submit-question.md (100%) diff --git a/.gitlab/issue_templates/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from .gitlab/issue_templates/bug_report.md rename to .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.gitlab/issue_templates/documentation-request.md b/.github/ISSUE_TEMPLATE/documentation-request.md similarity index 100% rename from .gitlab/issue_templates/documentation-request.md rename to .github/ISSUE_TEMPLATE/documentation-request.md diff --git a/.gitlab/issue_templates/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .gitlab/issue_templates/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.gitlab/issue_templates/submit-question.md b/.github/ISSUE_TEMPLATE/submit-question.md similarity index 100% rename from .gitlab/issue_templates/submit-question.md rename to .github/ISSUE_TEMPLATE/submit-question.md From 50037a490cda348c7d23d9e9b9d76979fd22b15d Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Fri, 22 Apr 2022 14:15:45 -0500 Subject: [PATCH 3/4] add ending newline to ops-bot.yaml --- .github/ops-bot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ops-bot.yaml b/.github/ops-bot.yaml index 586b0adf7f..0a52b67955 100644 --- a/.github/ops-bot.yaml +++ b/.github/ops-bot.yaml @@ -5,4 +5,4 @@ auto_merger: true branch_checker: true label_checker: true release_drafter: true -external_contributors: false \ No newline at end of file +external_contributors: false From 0b8e227cd1d90d1279157e635e4ec54955a65aab Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Fri, 22 Apr 2022 14:22:13 -0500 Subject: [PATCH 4/4] add myself to eng codeowners lists --- .github/CODEOWNERS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 4093659c52..2a94042b9b 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,9 +2,9 @@ * @BartleyR @mdemoret-nv @pdmack @raykallen # Engineering is requried for changes to the following -/morpheus/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv -/cmake/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv -/tests/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv +/morpheus/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv @cwharris +/cmake/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv @cwharris +/tests/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @dagardner-nv @drobison00 @efajardo-nv @cwharris # Data Science is requried for changes to `models` /models/ @BartleyR @mdemoret-nv @pdmack @bsuryadevara @raykallen @gbatmaz @tzemicheal