Skip to content

Commit c19db0e

Browse files
committed
feat: disable issues, projects and wiki by default
1 parent f973ba1 commit c19db0e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

github.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ async function createAndInviteToRepo (token, owner, username, repo) {
4646
try {
4747
await octokit.rest.repos.createInOrg({
4848
org: owner,
49-
name: repo
49+
name: repo,
50+
has_issues: false,
51+
has_projects: false,
52+
has_wiki: false,
5053
})
5154
} catch (err) {
5255
let e = err

0 commit comments

Comments
 (0)