fix: fixes default template path

This commit is contained in:
GitHub Actions
2022-05-11 13:23:25 +02:00
parent e1f37af978
commit 6cd9c30b20
2 changed files with 22 additions and 33 deletions

View File

@@ -14,7 +14,7 @@ import git from './git';
export async function main() {
// set default template
let template = await readFile(
path.resolve(__dirname, './TEMPLATE.md'),
path.resolve(__dirname, './TEMPLATE.ejs'),
'utf8'
);