This commit is contained in:
2021-12-28 15:20:31 +08:00
parent d4824078b2
commit c3b7d531e9
5 changed files with 161 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
package go_coverter
import (
"context"
"fmt"
"github.com/drone/drone-go/drone"
"github.com/drone/drone-go/plugin/converter"
)
// New returns a new conversion plugin.
func New() converter.Plugin {
return &plugin{}
}
type plugin struct{}
func (p *plugin) Convert(ctx context.Context, req *converter.Request) (*drone.Config, error) {
fmt.Printf("%+v", *req)
return &drone.Config{
Data: req.Config.Data,
}, nil
}