File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
packages/build/src/config Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1818 required : true
1919 default : CTA-Production
2020
21+ permissions :
22+ contents : read
23+
2124jobs :
2225 dry-run :
2326 name : Update greeting CTA
Original file line number Diff line number Diff line change @@ -8,11 +8,14 @@ interface ManPageConfig {
88 fileName : string ;
99}
1010
11- // TODO: this is duplicated in update-notification-manager.ts
11+ // This needs to match the interface in cli-repl/ update-notification-manager.ts
1212export interface GreetingCTADetails {
1313 chunks : {
1414 text : string ;
15- style ?: string ; // TODO: this is actually clr.ts/StyleDefinition
15+ // This is actually cli-repl/clr.ts/StyleDefinition, but we can't import it here.
16+ // The correct type is already enforced in json schema, so treating it as a generic
17+ // string is fine.
18+ style ?: string ;
1619 } [ ] ;
1720}
1821
You can’t perform that action at this time.
0 commit comments