woodpecker/woodpecker-go
Thomas Anderson b02f2df89e
CLI: remove step logs (#3458)
On top of #3451, addresses [PR
note](https://github.com/woodpecker-ci/woodpecker/pull/3451#discussion_r1505438144)

related to #1100

Not tested.

---------

Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
2024-04-22 19:11:59 +02:00
..
woodpecker CLI: remove step logs (#3458) 2024-04-22 19:11:59 +02:00
LICENSE pre-commit fixes (#2669) 2023-10-31 09:14:09 +01:00
README.md Add spellcheck config (#3018) 2024-01-27 21:15:10 +01:00

woodpecker-go

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

const (
  token = "dummyToken"
  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.RepoLookup("woodpecker-ci/woodpecker")
  fmt.Println(repo, err)
}