Use the copy
command to add to an existing repo
copier -a .copier-github.yaml copy https://github.com/tpluscode/github-copier-template.git .
copier -a .copier-github.yaml update
When true, it will create a GitHub workflow for Atlassian Changesets
If the package.json exists, it will automatically add a required dependency. Otherwise make sure to add it yourself, for example as
yarn add @changesets/cli
Extends the changesets workflow to also automatically push NPM packages when release PRs are merged.
You may have to manually add a release
script to you package.json if it did not exist when initializing the template
{
"scripts": {
"release": "changeset publish"
}
}
Asked when release_with_changesets
is false
, adds a GitHub workflow to automatically create tags when chagesets package.json version changes.