From 72ea7c23d4b3a9613a6cd69e2d0543a21eff541a Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Tue, 22 Dec 2020 10:52:51 -0600 Subject: [PATCH 1/8] add Pull Request Labeler configuration --- .github/labeler.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000000..d9e5b1c5647 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,25 @@ +# https://github.com/actions/labeler#common-examples +# Generated from https://github.com/rapidsai/cudf/blob/main/.github/CODEOWNERS +# Labels culled from https://github.com/rapidsai/cudf/labels + +cuDF (Python): + - python/ + - notebooks/ + +libcudf: + - cpp/ + +CMake: + - **/CMakeLists.txt + - **/cmake/ + +cuDF (Java): + - java/ + +Ops: + - .github/ + - /ci/ + - conda/ + - **/Dockerfile + - **/.dockerignore + - docker/ From 8954709dd160144c0ce899bf27cecebf2e80a51c Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Tue, 22 Dec 2020 10:58:44 -0600 Subject: [PATCH 2/8] Add GH labeler action --- .github/workflows/labeler.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/labeler.yml diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000000..23956a02fbd --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,11 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@main + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" From ef706be7a4e40e7664d20306712301fcd207df34 Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Wed, 30 Dec 2020 11:31:16 -0600 Subject: [PATCH 3/8] update globs to minimatch globs --- .github/labeler.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d9e5b1c5647..ce9e0701852 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -3,23 +3,23 @@ # Labels culled from https://github.com/rapidsai/cudf/labels cuDF (Python): - - python/ - - notebooks/ + - python/** + - notebooks/** libcudf: - - cpp/ + - cpp/** CMake: - **/CMakeLists.txt - - **/cmake/ + - **/cmake/** cuDF (Java): - - java/ + - java/** Ops: - - .github/ - - /ci/ - - conda/ + - .github/** + - /ci/** + - conda/** - **/Dockerfile - **/.dockerignore - - docker/ + - docker/** From 5ec00867d4e0b69cf7580748eaf949eb84d3c96a Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Fri, 8 Jan 2021 23:03:43 -0600 Subject: [PATCH 4/8] quite file pattern globs for labelling --- .github/labeler.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ce9e0701852..22998cff569 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -3,23 +3,23 @@ # Labels culled from https://github.com/rapidsai/cudf/labels cuDF (Python): - - python/** - - notebooks/** + - 'python/**' + - 'notebooks/**' libcudf: - - cpp/** + - 'cpp/**' CMake: - - **/CMakeLists.txt - - **/cmake/** + - '**/CMakeLists.txt' + - '**/cmake/**' cuDF (Java): - - java/** + - 'java/**' Ops: - - .github/** - - /ci/** - - conda/** - - **/Dockerfile - - **/.dockerignore - - docker/** + - '.github/**' + - 'ci/**' + - 'conda/**' + - '**/Dockerfile' + - '**/.dockerignore' + - 'docker/**' From 096f50248d70a163bcc2e3f4938b8defcd0ad136 Mon Sep 17 00:00:00 2001 From: jolorunyomi Date: Mon, 25 Jan 2021 08:32:03 -0600 Subject: [PATCH 5/8] update pr-labeler configuration --- .github/labeler.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 22998cff569..5359debc577 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -6,7 +6,7 @@ cuDF (Python): - 'python/**' - 'notebooks/**' -libcudf: +cpp: - 'cpp/**' CMake: @@ -15,11 +15,9 @@ CMake: cuDF (Java): - 'java/**' - -Ops: - - '.github/**' + +ci: - 'ci/**' + +conda: - 'conda/**' - - '**/Dockerfile' - - '**/.dockerignore' - - 'docker/**' From 0678bdebe9e28e25c6300a228babb2192d3a07b1 Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:37:16 -0600 Subject: [PATCH 6/8] updated pr-labeler configuration --- .github/labeler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 5359debc577..c5614843784 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -6,7 +6,7 @@ cuDF (Python): - 'python/**' - 'notebooks/**' -cpp: +libcudf: - 'cpp/**' CMake: @@ -16,7 +16,7 @@ CMake: cuDF (Java): - 'java/**' -ci: +gpuCI: - 'ci/**' conda: From 734b4b5c3895cd9863106db9cec6422eb83fef02 Mon Sep 17 00:00:00 2001 From: Mike Wendt <1915404+mike-wendt@users.noreply.github.com> Date: Mon, 8 Feb 2021 17:43:43 -0500 Subject: [PATCH 7/8] DOC Update comments and documentation link --- .github/labeler.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index c5614843784..03b4ec83598 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,6 +1,4 @@ -# https://github.com/actions/labeler#common-examples -# Generated from https://github.com/rapidsai/cudf/blob/main/.github/CODEOWNERS -# Labels culled from https://github.com/rapidsai/cudf/labels +# Documentation for conifg - https://github.com/actions/labeler#common-examples cuDF (Python): - 'python/**' From 3b4fa3073bf744ec5420ee0020775ffdf753b09d Mon Sep 17 00:00:00 2001 From: Mike Wendt <1915404+mike-wendt@users.noreply.github.com> Date: Mon, 8 Feb 2021 17:44:52 -0500 Subject: [PATCH 8/8] DOC Fix spelling Co-authored-by: Mark Harris --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 03b4ec83598..41fd3802d55 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,4 +1,4 @@ -# Documentation for conifg - https://github.com/actions/labeler#common-examples +# Documentation for config - https://github.com/actions/labeler#common-examples cuDF (Python): - 'python/**'