File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 72
72
" codeSync " : {{ $comp.codeSync | toJson }},
73
73
" enablePayment " : {{ $comp.enablePayment }},
74
74
" insecureNoDomain " : {{ $comp.insecureNoDomain }},
75
- " chargebeeProviderOptionsFile " : {{ $comp.chargebeeProviderOptionsFile }}
75
+ " chargebeeProviderOptionsFile " : {{ $comp.chargebeeProviderOptionsFile | quote }}
76
76
}
Original file line number Diff line number Diff line change @@ -224,6 +224,20 @@ export namespace ConfigEnv {
224
224
const n = deepCopySorted ( _n ) ;
225
225
const o = deepCopySorted ( _o ) ;
226
226
227
+ // Changed
228
+ if ( o . githubApp ?. enabled === false && n . githubApp ?. enabled === false ) {
229
+ delete ( o as any ) . githubApp ;
230
+ delete ( n as any ) . githubApp ;
231
+ }
232
+ if ( n . githubApp ) {
233
+ delete ( n as any ) . githubApp . certSecretName ;
234
+ }
235
+
236
+ delete ( n as any ) . chargebeeProviderOptionsFile ;
237
+ if ( o . devBranch === "" ) {
238
+ delete ( o as any ) . devBranch ;
239
+ }
240
+
227
241
// Unique
228
242
delete ( n as any ) . workspaceGarbageCollection . startDate ;
229
243
delete ( o as any ) . workspaceGarbageCollection . startDate ;
You can’t perform that action at this time.
0 commit comments