fix: url params
Some checks failed
Sample Testing / my_job (push) Failing after 1m18s

This commit is contained in:
Marcel S. Henselin 2026-04-17 13:04:00 +02:00
parent 8ff3cc5034
commit f9c27b01a8
3 changed files with 6 additions and 20 deletions

View file

@ -40,12 +40,7 @@ type templateData struct {
func main() {
data := templateData{}
u, err := uuid.NewUUID()
if err != nil {
githubactions.Fatalf("Error generating UUID: %v", err)
os.Exit(1)
}
data.CardID = u.String()
data.CardID = uuid.NewString()
data.Add = ""
author := githubactions.GetInput("author")