with action executor

This commit is contained in:
2022-09-14 23:29:54 +02:00
parent 4daa687479
commit 896b28188b
6 changed files with 75 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ import (
func CreateKrakenProcessCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "process",
Run: func(cmd *cobra.Command, args []string) {
Run: func(cmd *cobra.Command, _ []string) {
client := http.Client{}
var buf bytes.Buffer
@@ -22,7 +22,7 @@ func CreateKrakenProcessCmd() *cobra.Command {
Path string `json:"path"`
}{
Repository: "git@git.front.kjuulh.io:kjuulh/kraken.git",
Branch: "v0.1",
Branch: "feature/add-actions",
Path: "_examples/actions/write_a_readme/",
})
if err != nil {