From c1349c7e406f71134df603df738bc650c1b77ae9 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 17 Apr 2026 17:16:22 +0200 Subject: [PATCH] fix: push tag was incorrect --- action.yml | 2 +- main.go | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 4adf444..41b10f8 100644 --- a/action.yml +++ b/action.yml @@ -26,7 +26,7 @@ inputs: runs: using: 'docker' - image: 'docker://stackit-solutions.git.onstackit.cloud/actions/notify-slim:v0.3.1' + image: 'docker://stackit-solutions.git.onstackit.cloud/actions/notify-slim:v0.2.1' # image: 'Dockerfile' args: - ${{ inputs.project }} diff --git a/main.go b/main.go index b8674a8..be6ccd9 100644 --- a/main.go +++ b/main.go @@ -64,9 +64,6 @@ func main() { data.EventBody = body githubactions.Infof("using URL: %s", webhook) - // fmt.Println("URL:> ", webhook) - - // var jsonStr = []byte(fmt.Sprintf(data, project, commit, branch, status, actionid)) jsonStr, err := card(data) if err != nil { @@ -74,8 +71,6 @@ func main() { os.Exit(1) } - // log.Printf("retrieved data: %s", string(jsonStr)) - req, err := http.NewRequest("POST", webhook, bytes.NewBuffer(jsonStr)) if err != nil { githubactions.Fatalf("error %s", err.Error())