-
Notifications
You must be signed in to change notification settings - Fork 348
Expand file tree
/
Copy pathlabeler.yml
More file actions
60 lines (48 loc) · 1.85 KB
/
labeler.yml
File metadata and controls
60 lines (48 loc) · 1.85 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Add 'repo' label to any root file changes
repo:
- changed-files:
- any-glob-to-any-file: '**'
# Add 'controller' label to any change within the dockerfiles folder
controller:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/Dockerfile/**'
# Add 'maven_tutorial' label to any change within the 03_maven_tutorial folder
maven_tutorial:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/maven/**'
# Add 'python_tutorial' label to any change within the 04_python_tutorial folder
python_tutorial:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/python/**'
# Add 'nodejs' label to any change within the 05_nodejs folder
nodejs:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/node/**'
# Add 'test' label to any change to test* files within the github dir
test:
- changed-files:
- any-glob-to-any-file: '.github/workflows/test-**.yml'
# Add 'docker' label to any change to Dockerfile* files within the root dir
docker:
- changed-files:
- any-glob-to-any-file: '/**/Dockerfile'
# Add 'docker_compose' label to any change to docker-compose* files within the root dir
docker_compose:
- changed-files:
- any-glob-to-any-file: '/**/*docker-compose*.yml'
# Add 'android' label to any change to Dockerfile* files within the root dir
android:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/android/**'
# Add 'multi' label to any change to Dockerfile* files within the root dir
multi:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/multi/**'
# Add 'github_actions' label to any change to .github/workflows/* files within the root dir
github_actions:
- changed-files:
- any-glob-to-any-file: '/.github/workflows/*'
# Add 'dotnet' label to any change to Dockerfile* files within the root dir
dotnet:
- changed-files:
- any-glob-to-any-file: 'dockerfiles/dotnet/**'