DevOps Articles

Curated articles, resources, tips and trends from the DevOps World.

How We Use Github Issues to Track Customer Feedback

2 years ago blog.boot.dev

Summary: This is a summary of an article originally published by the source. Read the full original article here →

Boot.dev has been my side-project for the last couple of years now. We had (and still have) a https://discord.gg/EEkFwbv where myself and the students hang out, and that worked okay at first.

// NewClient - func NewClient(personalAccessToken string) (Client, error) { ctx := context.Background() ts := oauth2.StaticTokenSource( &oauth2.Token{AccessToken: personalAccessToken}, ) tc := oauth2.NewClient(ctx, ts) client := github.NewClient(tc) _, ghResp, err := client.Issues.List(ctx, false, nil) if err != nil { return Client{}, err } if ghResp.StatusCode > 299 { dat, err := io.ReadAll(ghResp.Body) if err != nil { return Client{}, err

Title: &title, Body: &body, Labels: &[]string{"course-feedback"}, }) if err != nil { return err

Made with pure grit © 2024 Jetpack Labs Inc. All rights reserved. www.jetpacklabs.com