|
| 1 | +change: |
| 2 | + - head-branch: ['^change/'] |
| 3 | + |
1 | 4 | enhancement:
|
2 |
| -- branch: ['feature/**', 'feat/**', 'enhancement/**', 'enh/**'] |
| 5 | + - head-branch: ['^feature/', '^feat/', '^enhancement/', '^enh/'] |
3 | 6 |
|
4 | 7 | bug:
|
5 |
| -- branch: ['fix/**', 'bug/**'] |
| 8 | + - head-branch: ['^fix/', '^bug/'] |
6 | 9 |
|
7 | 10 | chore:
|
8 |
| -- branch: ['chore/**'] |
| 11 | + - head-branch: ['^chore/'] |
9 | 12 |
|
10 | 13 | tests:
|
11 |
| -- branch: ['tests/**', 'test/**'] |
12 |
| -- tests/**/* |
13 |
| -- perf-tests/**/* |
| 14 | + - any: |
| 15 | + - head-branch: ['^tests/', '^test/'] |
| 16 | + - changed-files: ['tests/**/*', 'perf-tests/**/*'] |
| 17 | + - all: |
| 18 | + - changed-files: ['!tests/requirements.txt', '!perf-tests/requirements.txt'] |
14 | 19 |
|
15 | 20 | documentation:
|
16 |
| -- branch: ['docs/**', 'doc/**'] |
17 |
| -- '**/*.md' |
| 21 | + - head-branch: ['^docs/', '^doc/'] |
| 22 | + - changed-files: '**/*.md' |
18 | 23 |
|
19 | 24 | dependencies:
|
20 |
| -- branch: ['deps/**', 'dep/**', 'dependabot/**'] |
21 |
| -- go.mod |
22 |
| -- go.sum |
| 25 | + - head-branch: ['^deps/', '^dep/', '^dependabot/', 'pre-commit-ci-update-config'] |
| 26 | + - changed-files: ['go.mod', 'go.sum'] |
23 | 27 |
|
24 | 28 | helm_chart:
|
25 |
| -- deployments/helm-chart/**/* |
| 29 | + - changed-files: ['deployments/helm-chart/**/*'] |
0 commit comments