Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions cli/setup-project.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,19 @@ const updateGitHubWorkflows = (projectName) => {
newFileName: '.github/workflows/new-app-version.yml',
},
]);

// Update Pull Request Template
projectFilesManager.replaceFilesContent([
{
fileName: '.github/PULL_REQUEST_TEMPLATE.md',
replacements: [
{
searchValue: /^[\s\S]*?(?=## What does this do\?)/,
replaceValue: '',
Comment thread
fernandatoledo marked this conversation as resolved.
},
],
},
]);
};

const updateProjectReadme = () => {
Expand Down