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
This commit is contained in:
Will Constable 2023-11-21 16:19:32 -08:00 committed by PyTorch MergeBot
parent 0a33cf95c6
commit e0ec71deab

10
.github/labeler.yml vendored
View file

@ -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/**