@@ -34,7 +34,7 @@ const octokit = new Octokit({ auth });
3434
3535export const fetchFileFromRepo = async ( {
3636 owner = "goodrxoss" ,
37- repo = "temp- lifecycle-core" ,
37+ repo = "lifecycle-core" ,
3838 path = "docs/schema/yaml/2.3.0.yaml" ,
3939 branch = "main" ,
4040 debug = false ,
@@ -85,7 +85,7 @@ export const convertYamlToJson = <T = Record<string, unknown>>(
8585export const syncYamlFile = async ( options : SyncOptions ) => {
8686 const {
8787 owner = "goodrxoss" ,
88- repo = "temp- lifecycle-core" ,
88+ repo = "lifecycle-core" ,
8989 // docs/schema/yaml/2.3.0.yaml
9090 path = "docs/schema/yaml/2.3.0.yaml" ,
9191 dest = "src/lib/data/lifecycle-schema" ,
@@ -126,14 +126,14 @@ export const syncYamlFile = async (options: SyncOptions) => {
126126const program = new Command ( ) ;
127127
128128program
129- . option ( "-r, --repo <repo>" , "Source repository name" , "temp- lifecycle-core" )
129+ . option ( "-r, --repo <repo>" , "Source repository name" , "lifecycle-core" )
130130 . option ( "-p, --path <path>" , "Path to YAML file in source repo" )
131131 . option (
132132 "-d, --dest <dest>" ,
133133 "Path to store YAML and JSON files locally" ,
134134 "src/lib/data/lifecycle-schema" ,
135135 )
136- . option ( "-n, --name <name>" , "Base name for output files" , "temp- lifecycle-core" ) // New option for output file naming
136+ . option ( "-n, --name <name>" , "Base name for output files" , "lifecycle-core" ) // New option for output file naming
137137 . option ( "-o, --owner <owner>" , "GitHub owner or organization" , "goodrxoss" )
138138 . option ( "-b, --branch <branch>" , "GitHub branch to fetch from" , "main" )
139139 . option ( "--debug" , "Enable debug logging" , false ) ;
0 commit comments