|
69 | 69 | "commitMessageSuffix": "[python]", |
70 | 70 | "semanticCommitType": "chore" |
71 | 71 | }, |
| 72 | + { |
| 73 | + "description": "Use chore commit type for Python optional dev/test dependency updates", |
| 74 | + "matchCategories": ["python"], |
| 75 | + "matchDepTypes": ["dev", "test"], |
| 76 | + "semanticCommitType": "chore", |
| 77 | + "commitMessageSuffix": "[python]" |
| 78 | + }, |
72 | 79 | { |
73 | 80 | "description": "Group every Elixir (mix) update into a single PR", |
74 | 81 | "matchCategories": ["elixir"], |
75 | 82 | "groupName": "Elixir dependencies", |
76 | 83 | "groupSlug": "elixir", |
77 | 84 | "commitMessageSuffix": "[elixir]" |
78 | 85 | }, |
| 86 | + { |
| 87 | + "description": "Use chore commit type for Elixir dev/test dependency updates", |
| 88 | + "matchCategories": ["elixir"], |
| 89 | + "matchDepTypes": ["dev", "test"], |
| 90 | + "semanticCommitType": "chore", |
| 91 | + "commitMessageSuffix": "[elixir]" |
| 92 | + }, |
79 | 93 | { |
80 | 94 | "description": "Group every Rust (cargo) update into a single PR", |
81 | 95 | "matchCategories": ["rust"], |
|
99 | 113 | "groupSlug": "dotnet", |
100 | 114 | "commitMessageSuffix": "[dotnet]" |
101 | 115 | }, |
| 116 | + { |
| 117 | + "description": "Use chore commit type for .NET test-only package updates", |
| 118 | + "matchCategories": ["dotnet"], |
| 119 | + "matchPackageNames": [ |
| 120 | + "Microsoft.NET.Test.Sdk", |
| 121 | + "xunit", |
| 122 | + "xunit.runner.visualstudio" |
| 123 | + ], |
| 124 | + "semanticCommitType": "chore", |
| 125 | + "commitMessageSuffix": "[dotnet]" |
| 126 | + }, |
102 | 127 | { |
103 | 128 | "description": "Group every GitHub Actions / CI update into a single PR", |
104 | 129 | "matchManagers": ["github-actions"], |
|
0 commit comments