Skip to content

Commit

Permalink
fix: move post-script todos into pull-request description
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Oct 12, 2019
1 parent 0345043 commit 653134a
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions create-octokit-project.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ async function main() {
base: "master",
title: "🚧 Initial version",
body: `- [ ] Implement features. Create separate \`feat: ...\` commits for each feature of the initial version
- [ ] 100% test coverage`
- [ ] 100% test coverage
- [ ] Install https://github.com/apps/greenkeeper
- [ ] Install https://github.com/apps/pika-ci
- [ ] Create npm token at \`https://www.npmjs.com/settings/<your npm username>/tokens/create\` (with "Read and Publish" selected) and add it as \`NPM_SECRET\` at Then create secret at https://github.com/${answers.repository}/secrets
`
});

await createPackageJson(answers);
Expand Down Expand Up @@ -204,16 +208,6 @@ describe("Smoke test", () => {

console.log(`Your new repository is here:
https://github.com/${answers.repository}
Install the following apps on the new ${answers.repository} repository
- https://github.com/apps/greenkeeper
- https://github.com/apps/pika-ci
Create an npm token and store it as a secret in the repository
- Create at: https://www.npmjs.com/settings/<your npm username>/tokens/create (with "Read and Publish" selected)
- Then create secret at https://github.com/${answers.repository}/secrets with the name "NPM_TOKEN"
To change into the new directory, do
$ cd ${answers.path}`);
Expand Down

0 comments on commit 653134a

Please sign in to comment.