Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# See help here: https://github.com/marketplace/actions/labeler

cpp:
- changed-files:
- any-glob-to-any-file:
- model_api/cpp/*

python:
- changed-files:
- any-glob-to-any-file:
- model_api/python/*

tests:
- changed-files:
- any-glob-to-any-file:
- tests/*

docs:
- changed-files:
- any-glob-to-any-file:
- docs/*
- "**/*.md"
- "LICENSE"

build:
- changed-files:
- any-glob-to-any-file:
- ".github/**/*"
- ".pre-commit-config.yaml"
- "pyproject.toml"
- "**/CMakeLists.txt"
15 changes: 15 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Pull Request Labeler"
permissions: read-all
on:
- pull_request_target

jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Loading