Skip to content

Commit

Permalink
Add create repository with an initial commit with empty README
Browse files Browse the repository at this point in the history
  • Loading branch information
yuseferi committed Apr 11, 2022
1 parent c63c9a9 commit 1a6f7cd
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions example/newrepowithreadme/main.go
@@ -0,0 +1,50 @@
// Copyright 2018 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// The newrepo command utilizes go-github as a cli tool for
// creating new repositories. It takes an auth token as
// an environment variable and creates the new repo under
// the account affiliated with that token.
package main

import (
"context"
"flag"
"fmt"
"log"
"os"

"github.com/google/go-github/v43/github"
"golang.org/x/oauth2"
)

var (
name = flag.String("name", "", "Name of repo to create in authenticated user's GitHub account.")
description = flag.String("description", "", "Description of created repo.")
private = flag.Bool("private", false, "Will created repo be private.")
autoInit = flag.Bool("auto-init", false, "Pass true to create an initial commit with empty README.")
)

func main() {
flag.Parse()
token := os.Getenv("GITHUB_AUTH_TOKEN")
if token == "" {
log.Fatal("Unauthorized: No token present")
}
if *name == "" {
log.Fatal("No name: New repos must be given a name")
}
ctx := context.Background()
ts := oauth2.StaticTokenSource(&oauth2.Token{AccessToken: token})
tc := oauth2.NewClient(ctx, ts)
client := github.NewClient(tc)

r := &github.Repository{Name: name, Private: private, Description: description,AutoInit: autoInit}
repo, _, err := client.Repositories.Create(ctx, "", r)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Successfully created new repo: %v\n", repo.GetName())
}

0 comments on commit 1a6f7cd

Please sign in to comment.