1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use serde::Deserialize;

use crate::helpers::Class;

use super::{Artifact, Build, BuildStatus, ShortBuild};
use crate::action::CommonAction;
use crate::changeset;
use crate::job::WorkflowJob;

build_with_common_fields_and_impl!(
    /// A `Build` from a WorkflowJob
    #[derive(Deserialize, Debug)]
    #[serde(rename_all = "camelCase")]
    pub struct WorkflowRun<ParentJob = WorkflowJob> {
        /// Change set for this build
        pub change_sets: Vec<changeset::CommonChangeSetList>,
        /// Previous build
        pub previous_build: Option<ShortBuild>,
    }
);
register_class!("org.jenkinsci.plugins.workflow.job.WorkflowRun" => WorkflowRun);

impl WorkflowRun {}