From f4d9618466bbb7ac18bddf2ff03c1b3cfd3cd44f Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Tue, 22 Dec 2020 15:15:36 -0600 Subject: [PATCH 1/4] Create labeler.yml --- .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 000000000..d528628d7 --- /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/rmm/labels + +Python: + - python/ + - notebooks/ + +librmm: + - cpp/ + +CMake: + - **/CMakeLists.txt + - **/cmake/ + +Java: + - java/ + +Ops: + - .github/ + - /ci/ + - conda/ + - **/Dockerfile + - **/.dockerignore + - docker/ From 41d627ab0beec4e95ba7f6202f58c1ef8db468a3 Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Wed, 23 Dec 2020 10:09:12 -0600 Subject: [PATCH 2/4] Create labeler.yml --- .github/workflows/labeler.yml | 12 ++++++++++++ 1 file changed, 12 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 000000000..7580f81f8 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,12 @@ + +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 84e686ea27b5e9afb16d7f1b722034c9afa1822b Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Wed, 30 Dec 2020 11:36:34 -0600 Subject: [PATCH 3/4] 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 d528628d7..ee9cae053 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -3,23 +3,23 @@ # Labels culled from https://github.com/rapidsai/rmm/labels Python: - - python/ - - notebooks/ + - python/** + - notebooks/** librmm: - - cpp/ + - cpp/** CMake: - **/CMakeLists.txt - - **/cmake/ + - **/cmake/** Java: - - java/ + - java/** Ops: - - .github/ - - /ci/ - - conda/ + - .github/** + - /ci/** + - conda/** - **/Dockerfile - **/.dockerignore - - docker/ + - docker/** From 66a4c9a65fb6f26674f1cc5634917f0abef0daaf Mon Sep 17 00:00:00 2001 From: Joseph <68436579+jolorunyomi@users.noreply.github.com> Date: Fri, 8 Jan 2021 23:09:49 -0600 Subject: [PATCH 4/4] quote file pattern globs --- .github/labeler.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ee9cae053..064d57b9d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -3,23 +3,23 @@ # Labels culled from https://github.com/rapidsai/rmm/labels Python: - - python/** - - notebooks/** + - 'python/**' + - 'notebooks/**' librmm: - - cpp/** + - 'cpp/**' CMake: - - **/CMakeLists.txt - - **/cmake/** + - '**/CMakeLists.txt' + - '**/cmake/**' Java: - - java/** + - 'java/**' Ops: - - .github/** - - /ci/** - - conda/** - - **/Dockerfile - - **/.dockerignore - - docker/** + - '.github/**' + - 'ci/**' + - 'conda/**' + - '**/Dockerfile' + - '**/.dockerignore' + - 'docker/**'