From e0ec71deab2aedd6d44f4ea3e03b52bdaf5db3da Mon Sep 17 00:00:00 2001 From: Will Constable Date: Tue, 21 Nov 2023 16:19:32 -0800 Subject: [PATCH] Fix module: distributed labeler (#114324) Removes preceding `/` which was preventing labeler from working. (looks like a typo in the original PR) Pull Request resolved: https://github.com/pytorch/pytorch/pull/114324 Approved by: https://github.com/XilunWu, https://github.com/fegin --- .github/labeler.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d7c2ae2da19..8dc33342d51 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -69,8 +69,8 @@ - .ci/docker/ci_commit_pins/triton.txt "module: distributed": -- /torch/csrc/distributed/** -- /torch/distributed/** -- /torch/nn/parallel/** -- /test/distributed/** -- /torch/testing/_internal/distributed/** +- torch/csrc/distributed/** +- torch/distributed/** +- torch/nn/parallel/** +- test/distributed/** +- torch/testing/_internal/distributed/**