[misc] Add labeler for automatic labeling (#12710)

This commit is contained in:
Chang Su
2025-11-05 14:44:43 -08:00
committed by GitHub
parent 141278048e
commit 83b104ee8c
3 changed files with 136 additions and 0 deletions

View File

@@ -32,3 +32,19 @@ jobs:
extensions: h,c,cpp,hpp,cu,cuh,cc
clangFormatVersion: 18
style: file
- name: Check proto files are in sync
run: |
if ! diff -q python/sglang/srt/grpc/sglang_scheduler.proto sgl-router/src/proto/sglang_scheduler.proto; then
echo "❌ ERROR: Proto files are out of sync!"
echo ""
echo "The following files must be kept identical:"
echo " - python/sglang/srt/grpc/sglang_scheduler.proto"
echo " - sgl-router/src/proto/sglang_scheduler.proto"
echo ""
echo "Please ensure both files have the same content."
echo ""
echo "Differences:"
diff python/sglang/srt/grpc/sglang_scheduler.proto sgl-router/src/proto/sglang_scheduler.proto || true
exit 1
fi