I want to use https://github.com/google/go-github for creating a comment on an issue, but this test code fails:
package main
import (
"golang.org/x/oauth2"
"github.com/google/go-github/v49/github"
)
func main() {
ctx := context.Background()
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: "token_here"},
)
tc := oauth2.NewClient(ctx, ts)
client := github.NewClient(tc)
// list all repositories for the authenticated user
repos, _, err := client.Repositories.List(ctx, "", nil)
}
but I'm just getting
# command-line-arguments
./main.go:9:9: undefined: context
./main.go:18:2: repos declared but not used
./main.go:18:12: err declared but not used
back... So - what I have to do to get this working and how can I send a comment (via my token) to an issue on github?
You need to import the
"context"
package to be able to callcontext.Background()
After calling
client.Repositories.List(ctx, "", nil)
you created 2 new variables:repos
anderr
, but never used them anywhere. In Go, an unused variable is a compiler error, so either remove those variables, or preferably use them as you would.To use the Github API, you will need to get yourself an access token, and replace
"token_here"
with that. Then you can do something as follows:... where
OWNER
is the owner of the repository,REPO
is the name of the repository, andISSUE_NUMBER
is the number of the issue where you want to write the comment.