github.com/oam-dev/kubevela@v1.9.11/vela-templates/definitions/internal/workflowstep/print-message-in-status.cue (about)

     1  import (
     2  	"vela/op"
     3  )
     4  
     5  "print-message-in-status": {
     6  	type: "workflow-step"
     7  	annotations: {
     8  		"category": "Process Control"
     9  	}
    10  	description: "print message in workflow step status"
    11  }
    12  
    13  template: {
    14  	parameter: {
    15  		message: string
    16  	}
    17  
    18  	msg: op.#Message & {
    19  		message: parameter.message
    20  	}
    21  }