Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
github.com/buildkite/go-buildkite/v3
A Go library and client for the Buildkite API. This project draws a lot of its structure and testing methods from go-github.
To get the package, execute:
go get github.com/buildkite/go-buildkite/v3/buildkite
Simple shortened example for listing all pipelines:
import (
"github.com/buildkite/go-buildkite/v3/buildkite"
)
...
config, err := buildkite.NewTokenConfig(*apiToken, false)
if err != nil {
log.Fatalf("client config failed: %s", err)
}
client := buildkite.NewClient(config.Client())
pipelines, _, err := client.Pipelines.List(*org, nil)
See the examples directory for additional examples.
Note: not all API features are supported by go-buildkite
just yet. If you need a feature, please make an issue or submit a pull request.
version.go
ghch --format=markdown --next-version=v<next-version-number>
, and update it in CHANGELOG.md
This library is distributed under the BSD-style license found in the LICENSE file.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.