woodpecker/plugin/remote/gitlab/register.go

34 lines
666 B
Go
Raw Normal View History

package gitlab
import (
"github.com/drone/config"
"github.com/drone/drone/plugin/remote"
)
var (
gitlabURL = config.String("gitlab-url", "")
gitlabSkipVerify = config.Bool("gitlab-skip-verify", false)
gitlabOpen = config.Bool("gitlab-open", false)
2015-01-23 18:51:37 +00:00
gitlabClient = config.String("gitlab-client", "")
gitlabSecret = config.String("gitlab-secret", "")
)
// Registers the Gitlab plugin using the default
// settings from the config file or environment
// variables.
func Register() {
if len(*gitlabURL) == 0 {
return
}
remote.Register(
New(
*gitlabURL,
*gitlabSkipVerify,
*gitlabOpen,
2015-01-23 18:51:37 +00:00
*gitlabClient,
*gitlabSecret,
),
)
}