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
# Label configuration for auto-labeling PRs based on changed files
# Source code changes
src:
- changed-files:
- any-glob-to-any-file: 'src/**/*.rs'
# Documentation changes
documentation:
- changed-files:
- any-glob-to-any-file:
- '**/*.md'
- 'docs/**/*'
# Examples
examples:
- changed-files:
- any-glob-to-any-file: 'examples/**/*'
# Tests
tests:
- changed-files:
- any-glob-to-any-file:
- 'tests/**/*'
- 'src/**/tests.rs'
# Benchmarks
benchmarks:
- changed-files:
- any-glob-to-any-file: 'benches/**/*'
# CI/CD
ci-cd:
- changed-files:
- any-glob-to-any-file:
- '.github/**/*'
- '.gitlab-ci.yml'
# Dependencies
dependencies:
- changed-files:
- any-glob-to-any-file:
- 'Cargo.toml'
- 'Cargo.lock'
# Build system
build:
- changed-files:
- any-glob-to-any-file:
- 'build.rs'
- 'Makefile'
- 'CMakeLists.txt'
# C source
c-code:
- changed-files:
- any-glob-to-any-file:
- 'csrc/**/*.c'
- 'csrc/**/*.h'