diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000000..41fd3802d55 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,21 @@ +# Documentation for config - https://github.com/actions/labeler#common-examples + +cuDF (Python): + - 'python/**' + - 'notebooks/**' + +libcudf: + - 'cpp/**' + +CMake: + - '**/CMakeLists.txt' + - '**/cmake/**' + +cuDF (Java): + - 'java/**' + +gpuCI: + - 'ci/**' + +conda: + - 'conda/**' 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 }}"