blob: b825f20b5a09073bc95bdc96c9430fec362524ba [file] [log] [blame]
Yigit Boyar7dcad2b2022-02-04 16:49:03 +00001{
2 "__comment": [
3 "Compose and Main are two configurations we have in CI.",
4 "Each can have include and exclude filters where these filters run an",
5 "exact match on the project name.",
6 "If the project matches both exclude and include filters, exclude is prioritized."
7 ],
8 "compose" : {
9 "include" : [
Dustin Lam29fb6592023-05-05 09:43:14 -070010 "compose-runtime"
Yigit Boyar7dcad2b2022-02-04 16:49:03 +000011 ],
12 "default": false
13 },
14 "main" : {
15 "exclude" : [
Yigit Boyarc14adc72023-09-20 10:27:29 -070016 "compose-runtime",
Yigit Boyarc14adc72023-09-20 10:27:29 -070017 "room"
Yigit Boyar7dcad2b2022-02-04 16:49:03 +000018 ],
19 "default": true
20 }
21}