woodpecker/woodpecker-go
qwerty287 f88c70b55e
Rename to pipeline in DB and JSONs (#1296)
Closes #1282 

Follow-up to #1224, addresses #745

- changes JSON fields
- adds migration to rename columns
- fixes some comments
2022-10-22 15:54:43 +02:00
..
woodpecker Rename to pipeline in DB and JSONs (#1296) 2022-10-22 15:54:43 +02:00
LICENSE Rename drone-go (#390) 2021-10-03 00:27:43 +02:00
README.md Use editorconfig-checker (#982) 2022-06-17 12:03:34 +02:00

woodpecker-go

import (
  "github.com/woodpecker-ci/woodpecker/woodpecker-go/woodpecker"
  "golang.org/x/oauth2"
)

const (
  token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
  host  = "http://woodpecker.company.tld"
)

func main() {
  // create an http client with oauth authentication.
  config := new(oauth2.Config)
  authenticator := config.Client(
    oauth2.NoContext,
    &oauth2.Token{
      AccessToken: token,
    },
  )

  // create the woodpecker client with authenticator
  client := woodpecker.NewClient(host, authenticator)

  // gets the current user
  user, err := client.Self()
  fmt.Println(user, err)

  // gets the named repository information
  repo, err := client.Repo("woodpecker-ci", "woodpecker")
  fmt.Println(repo, err)
}