-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathlabeler.yml
More file actions
34 lines (30 loc) · 1010 Bytes
/
labeler.yml
File metadata and controls
34 lines (30 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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.AI.Workflows/**
- dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/**
- dotnet/samples/03-workflows/**
- python/packages/main/agent_framework/_workflow/**
- python/samples/getting_started/workflow/**
# Add 'lab' label to any change within the 'python/packages/lab' directory
lab:
- changed-files:
- any-glob-to-any-file:
- python/packages/lab/**