Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
475999cf
Unverified
Commit
475999cf
authored
Jan 09, 2026
by
Ryan McCormick
Committed by
GitHub
Jan 09, 2026
Browse files
ci: Auto-label PRs based on changed files (#5292)
parent
4a2235d1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
140 additions
and
0 deletions
+140
-0
.github/filters.yaml
.github/filters.yaml
+1
-0
.github/labeler.yml
.github/labeler.yml
+106
-0
.github/workflows/label-pr.yml
.github/workflows/label-pr.yml
+33
-0
No files found.
.github/filters.yaml
View file @
475999cf
...
@@ -46,6 +46,7 @@ ignore:
...
@@ -46,6 +46,7 @@ ignore:
-
'
.github/scripts/**'
-
'
.github/scripts/**'
-
'
.github/ISSUE_TEMPLATE/**'
-
'
.github/ISSUE_TEMPLATE/**'
-
'
.github/pull_request_template.md'
-
'
.github/pull_request_template.md'
-
'
.github/labeler.yml'
-
'
.github/release.yml'
-
'
.github/release.yml'
-
'
.github/copy-pr-bot.yaml'
-
'
.github/copy-pr-bot.yaml'
-
'
.github/dco.yml'
-
'
.github/dco.yml'
...
...
.github/labeler.yml
0 → 100644
View file @
475999cf
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for actions/labeler
# Labels are applied to PRs based on changed files
# Backend labels
backend::vllm:
- changed-files
:
-
any-glob-to-any-file
:
-
components/src/dynamo/vllm/**
-
container/Dockerfile.vllm
-
container/deps/requirements.vllm.txt
-
container/deps/vllm/**
-
examples/backends/vllm/**
backend::sglang:
- changed-files
:
-
any-glob-to-any-file
:
-
components/src/dynamo/sglang/**
-
container/Dockerfile.sglang
-
examples/backends/sglang/**
backend::trtllm:
- changed-files
:
-
any-glob-to-any-file
:
-
components/src/dynamo/trtllm/**
-
container/Dockerfile.trtllm
-
container/deps/trtllm/**
-
container/build_trtllm_wheel.sh
-
examples/backends/trtllm/**
# Component labels
router
:
-
changed-files
:
-
any-glob-to-any-file
:
-
components/src/dynamo/router/**
-
lib/llm/src/kv_router/**
frontend
:
-
changed-files
:
-
any-glob-to-any-file
:
-
components/src/dynamo/frontend/**
-
lib/llm/src/http/**
-
lib/llm/src/grpc/**
-
lib/llm/src/preprocessor/**
-
lib/llm/src/protocols/**
-
lib/llm/src/preprocessor.rs
-
lib/llm/src/tokenizers.rs
planner
:
-
changed-files
:
-
any-glob-to-any-file
:
-
components/src/dynamo/planner/**
-
tests/planner/**
# Deployment labels
deployment::k8s:
- changed-files
:
-
any-glob-to-any-file
:
-
deploy/helm/**
-
deploy/operator/**
# Misc labels
build
:
-
changed-files
:
-
any-glob-to-any-file
:
-
container/**
ci
:
-
changed-files
:
-
any-glob-to-any-file
:
-
.github/workflows/**
-
.github/actions/**
-
.github/filters.yaml
documentation
:
-
changed-files
:
-
any-glob-to-any-file
:
-
docs/**
-
'
**/*.md'
-
'
**/*.rst'
multimodal
:
-
changed-files
:
-
any-glob-to-any-file
:
-
examples/multimodal/**
-
components/src/dynamo/vllm/multimodal_handlers/**
-
components/src/dynamo/vllm/multimodal_utils/**
-
components/src/dynamo/sglang/multimodal_utils/**
-
components/src/dynamo/sglang/request_handlers/multimodal/**
# NOTE: Consider consolidating multimodal trtllm helpers to a subfolder
-
components/src/dynamo/trtllm/encode_helper.py
-
components/src/dynamo/trtllm/multimodal_processor.py
.github/workflows/label-pr.yml
0 → 100644
View file @
475999cf
# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name
:
Label PR
on
:
pull_request
:
types
:
[
opened
,
synchronize
,
reopened
]
jobs
:
label
:
runs-on
:
ubuntu-latest
permissions
:
contents
:
read
pull-requests
:
write
steps
:
-
uses
:
actions/labeler@v5
with
:
repo-token
:
${{ secrets.GITHUB_TOKEN }}
configuration-path
:
.github/labeler.yml
sync-labels
:
false
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment