@@ -2496,7 +2496,6 @@ type WorkflowStep struct {
24962496 Agent WorkflowStepAgent `json:"agent"`
24972497 // WorkflowPullRequestStep represents a pull request creation step.
24982498 PullRequest WorkflowStepPullRequest `json:"pullRequest"`
2499- Report WorkflowStepReport `json:"report"`
25002499 // WorkflowTaskStep represents a task step that executes a command.
25012500 Task WorkflowStepTask `json:"task"`
25022501 JSON workflowStepJSON `json:"-"`
@@ -2506,7 +2505,6 @@ type WorkflowStep struct {
25062505type workflowStepJSON struct {
25072506 Agent apijson.Field
25082507 PullRequest apijson.Field
2509- Report apijson.Field
25102508 Task apijson.Field
25112509 raw string
25122510 ExtraFields map [string ]apijson.Field
@@ -2590,51 +2588,6 @@ func (r workflowStepPullRequestJSON) RawJSON() string {
25902588 return r .raw
25912589}
25922590
2593- type WorkflowStepReport struct {
2594- // Report must have at least one output:
2595- //
2596- // ```
2597- // size(this) >= 1
2598- // ```
2599- Outputs []WorkflowStepReportOutput `json:"outputs"`
2600- JSON workflowStepReportJSON `json:"-"`
2601- }
2602-
2603- // workflowStepReportJSON contains the JSON metadata for the struct
2604- // [WorkflowStepReport]
2605- type workflowStepReportJSON struct {
2606- Outputs apijson.Field
2607- raw string
2608- ExtraFields map [string ]apijson.Field
2609- }
2610-
2611- func (r * WorkflowStepReport ) UnmarshalJSON (data []byte ) (err error ) {
2612- return apijson .UnmarshalRoot (data , r )
2613- }
2614-
2615- func (r workflowStepReportJSON ) RawJSON () string {
2616- return r .raw
2617- }
2618-
2619- type WorkflowStepReportOutput struct {
2620- JSON workflowStepReportOutputJSON `json:"-"`
2621- }
2622-
2623- // workflowStepReportOutputJSON contains the JSON metadata for the struct
2624- // [WorkflowStepReportOutput]
2625- type workflowStepReportOutputJSON struct {
2626- raw string
2627- ExtraFields map [string ]apijson.Field
2628- }
2629-
2630- func (r * WorkflowStepReportOutput ) UnmarshalJSON (data []byte ) (err error ) {
2631- return apijson .UnmarshalRoot (data , r )
2632- }
2633-
2634- func (r workflowStepReportOutputJSON ) RawJSON () string {
2635- return r .raw
2636- }
2637-
26382591// WorkflowTaskStep represents a task step that executes a command.
26392592type WorkflowStepTask struct {
26402593 // Command must be between 1 and 20,000 characters:
@@ -2668,7 +2621,6 @@ type WorkflowStepParam struct {
26682621 Agent param.Field [WorkflowStepAgentParam ] `json:"agent"`
26692622 // WorkflowPullRequestStep represents a pull request creation step.
26702623 PullRequest param.Field [WorkflowStepPullRequestParam ] `json:"pullRequest"`
2671- Report param.Field [WorkflowStepReportParam ] `json:"report"`
26722624 // WorkflowTaskStep represents a task step that executes a command.
26732625 Task param.Field [WorkflowStepTaskParam ] `json:"task"`
26742626}
@@ -2718,26 +2670,6 @@ func (r WorkflowStepPullRequestParam) MarshalJSON() (data []byte, err error) {
27182670 return apijson .MarshalRoot (r )
27192671}
27202672
2721- type WorkflowStepReportParam struct {
2722- // Report must have at least one output:
2723- //
2724- // ```
2725- // size(this) >= 1
2726- // ```
2727- Outputs param.Field [[]WorkflowStepReportOutputParam ] `json:"outputs"`
2728- }
2729-
2730- func (r WorkflowStepReportParam ) MarshalJSON () (data []byte , err error ) {
2731- return apijson .MarshalRoot (r )
2732- }
2733-
2734- type WorkflowStepReportOutputParam struct {
2735- }
2736-
2737- func (r WorkflowStepReportOutputParam ) MarshalJSON () (data []byte , err error ) {
2738- return apijson .MarshalRoot (r )
2739- }
2740-
27412673// WorkflowTaskStep represents a task step that executes a command.
27422674type WorkflowStepTaskParam struct {
27432675 // Command must be between 1 and 20,000 characters:
0 commit comments