mirror of
https://codeberg.org/woodpecker-plugins/go-plugin.git
synced 2024-11-24 22:35:39 +01:00
Woodpecker CI plugin library
00a58f4a06
This PR was opened by the [ready-release-go](https://github.com/woodpecker-ci/plugin-ready-release-go) plugin. When you're ready to do a release, you can merge this pull-request and a new release with version `0.7.0` will be created automatically. If you're not ready to do a release yet, that's fine, whenever you add more changes to `main` this pull-request will be updated. ## Options - [ ] Mark this version as a release candidate ## [0.7.0](https://codeberg.org/woodpecker-plugins/go-plugin/releases/tag/v0.7.0) - 2024-11-13 ### 📈 Enhancement - Add support for CI_PIPELINE_FILES [[#33](https://codeberg.org/woodpecker-plugins/go-plugin/pulls/33)] ### 📦️ Dependency - fix(deps): update github.com/urfave/cli/v3 digest to cd7d34a [[#32](https://codeberg.org/woodpecker-plugins/go-plugin/pulls/32)] ### Misc - Use ready-release-go plugin [[#34](https://codeberg.org/woodpecker-plugins/go-plugin/pulls/34)] Reviewed-on: https://codeberg.org/woodpecker-plugins/go-plugin/pulls/35 Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: oauth <woodpecker-bot@obermui.de> Co-committed-by: oauth <woodpecker-bot@obermui.de> |
||
---|---|---|
.woodpecker | ||
.gitignore | ||
CHANGELOG.md | ||
commit.go | ||
flags.go | ||
flake.lock | ||
flake.nix | ||
forge.go | ||
go.mod | ||
go.sum | ||
http.go | ||
LICENSE | ||
logger.go | ||
metadata_test.go | ||
metadata.go | ||
pipeline.go | ||
plugin_test.go | ||
plugin.go | ||
README.md | ||
renovate.json | ||
repo.go | ||
step.go | ||
system.go |
Library for creating Woodpecker CI plugins
Provides basic structure and helpers to load Woodpecker CI environment variables while also supporting reading Drone CI environment variables where available.
Adds logging support based on zerolog library and allows configurable HTTP client library.
Builtin settings
Settings Name | Environment variable | Default | Description | |
---|---|---|---|---|
log_level |
- | info |
Sets log level (panic , fatal , error , warn , info , debug , trace ) |
|
skip_verify |
- | false |
- | Skip verification of TLS certificate |
SOCKS_PROXY |
none | SOCKS5 proxy to use for connections | ||
SOCKS_PROXY_OFF |
none | Do not use SOCKS5 proxy |
Creating plugin
package main
import (
"context"
"codeberg.org/woodpecker-plugins/go-plugin"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v3"
)
type Settings struct {
// TODO: Plugin settings
SampleFlag string
}
type Plugin struct {
*plugin.Plugin
Settings *Settings
}
func (p *Plugin) Flags() []cli.Flag {
return []cli.Flag{
// TODO: Add flags
&cli.StringFlag{
Name: "sample.flag",
Usage: "sample flag",
Sources: cli.EnvVars("PLUGIN_SAMPLE_FLAG"),
Destination: &p.Settings.SampleFlag,
},
}
}
func (p *Plugin) Execute(ctx context.Context) error {
// TODO: Implement execution
log.Debug().Msg("executed")
return nil
}
func main() {
p := &Plugin{
Settings: &Settings{},
}
p.Plugin = plugin.New(plugin.Options{
Name: "sample-plugin",
Description: "Sample plugin",
Flags: p.Flags(),
Execute: p.Execute,
})
p.Run()
}