File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export async function createWithOptions({
61
61
await withSpinner ( "Initializing GitHub repository" , async ( ) => {
62
62
await $ `git remote add origin https://github.com/${ options . owner } /${ options . repository } ` ;
63
63
await $ `git add -A` ;
64
- await $ `git commit --message ${ "chore : initialized repo ✨" } ` ;
64
+ await $ `git commit --message ${ "feat : initialized repo ✨" } ` ;
65
65
await $ `git push -u origin main --force` ;
66
66
await initializeGitHubRepository ( octokit , options ) ;
67
67
} ) ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export async function create(args: string[]) {
40
40
`cd ${ inputs . options . repository } ` ,
41
41
`pnpm run initialize` ,
42
42
`git add -A` ,
43
- `git commit -m "chore : initial commit ✨"` ,
43
+ `git commit -m "feat : initial commit ✨"` ,
44
44
`git push -u origin main` ,
45
45
] ,
46
46
} ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export async function initialize(args: string[]) {
18
18
label : "You may consider committing these changes:" ,
19
19
lines : [
20
20
`git add -A` ,
21
- `git commit -m "chore : initialized repo ✨` ,
21
+ `git commit -m "feat : initialized repo ✨` ,
22
22
`git push` ,
23
23
] ,
24
24
} ,
You can’t perform that action at this time.
0 commit comments