Files
agent-framework/.github/labeler.yml
T
Ben Thomas b4d8ad1bd2 Adding workflows label to PRs when appropriate. (#643)
* Adding workflows label to issues when appropriate.

* Adding declarative workflows path.
2025-09-08 19:20:08 +00:00

28 lines
840 B
YAML

# Add 'python' label to any change within the 'python' directory
python:
- changed-files:
- any-glob-to-any-file:
- python/**
# Add '.NET' label to any change within samples or kernel 'dotnet' directories.
.NET:
- changed-files:
- any-glob-to-any-file:
- dotnet/**
# Add 'documentation' label to any change within the 'docs' directory, or any '.md' files
documentation:
- changed-files:
- any-glob-to-any-file:
- docs/**
- '**/*.md'
# Add 'workflows' label to any change within the dotnet or python workflows src or samples
workflows:
- changed-files:
- any-glob-to-any-file:
- dotnet/src/Microsoft.Agents.Workflows/**
- dotnet/src/Microsoft.Agents.Workflows.Declarative/**
- dotnet/samples/GettingStarted/Workflow/**
- python/packages/workflows/**
- python/samples/getting_started/workflow/**