Skip to content

Commit 41ff45c

Browse files
authored
fix: remove todo to install pika-ci, install renovate when on @octokit
1 parent d85790e commit 41ff45c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/create-pull-request.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ module.exports = createPullRequest;
33
async function createPullRequest(octokit, { owner, repo }) {
44
let body = `- [ ] Implement features. Create separate \`feat: ...\` commits for each feature of the initial version
55
- [ ] 100% test coverage
6-
- [ ] Install https://github.com/apps/pika-ci
76
`;
87

9-
if (owner !== "octokit") {
8+
if (owner === "octokit") {
9+
body += `- [ ] Install https://github.com/apps/renovate`;
10+
} else {
1011
body += `- [ ] Create npm token at \`https://www.npmjs.com/settings/<your npm username>/tokens/create\` (with "Read and Publish" selected) and add it as \`NPM_TOKEN\` at Then create secret at https://github.com/${owner}/${repo}/settings/secrets`;
1112
}
1213

0 commit comments

Comments
 (0)