Skip to content

Commit 28a1a00

Browse files
Update defaultConfig to use README_PATH.defaultValue for the readme property
1 parent b503e0a commit 28a1a00

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libs/defaults.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { Config } from "../types/config";
22
import type { Image } from "../types/image";
33
import type { Package } from "../types/package";
44
import type { Author, Commit, PullRequest } from "../types/repository";
5+
import { README_PATH } from "../utils/inputs";
56

67
export const defaultPackage: Package = {
78
manager: "auto",
@@ -39,7 +40,7 @@ export const defaultPullRequest: PullRequest = {
3940
};
4041

4142
export const defaultConfig: Config = {
42-
readme: "README.md",
43+
readme: README_PATH.defaultValue,
4344

4445
package: defaultPackage,
4546
image: defaultImage,

0 commit comments

Comments
 (0)