-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e41e4be
commit 3c090e6
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
component_management: | ||
default_rules: # default rules that will be inherited by all components | ||
statuses: | ||
- type: project # in this case every component that doens't have a status defined will have a project type one | ||
target: auto | ||
branches: | ||
- "!main" | ||
individual_components: | ||
- component_id: module_c # this is an identifier that should not be changed | ||
name: C # this is a display name, and can be changed freely | ||
paths: | ||
- c/** | ||
- component_id: module_csharp | ||
name: C# | ||
paths: | ||
- csharp/** | ||
- component_id: module_javascript | ||
name: JavaScript | ||
paths: | ||
- javascript/** | ||
- component_id: module_python | ||
name: Python | ||
paths: | ||
- python/** | ||
- component_id: module_rust | ||
name: Rust | ||
paths: | ||
- rust/** |