diff --git a/lib/crates/fabro-workflow/src/pipeline/pull_request.rs b/lib/crates/fabro-workflow/src/pipeline/pull_request.rs index 29923abfc..6894fa0f8 100644 --- a/lib/crates/fabro-workflow/src/pipeline/pull_request.rs +++ b/lib/crates/fabro-workflow/src/pipeline/pull_request.rs @@ -580,7 +580,6 @@ pub async fn pull_request(concluded: Concluded, options: &PullRequestOptions) -> run_id: run_options.run_id, outcome, conclusion, - pushed_branch: run_options.run_branch().map(str::to_string), pr_url, } } diff --git a/lib/crates/fabro-workflow/src/pipeline/types.rs b/lib/crates/fabro-workflow/src/pipeline/types.rs index defa987f9..cea052297 100644 --- a/lib/crates/fabro-workflow/src/pipeline/types.rs +++ b/lib/crates/fabro-workflow/src/pipeline/types.rs @@ -307,11 +307,10 @@ pub struct Concluded { /// Output of the PULL_REQUEST phase. #[non_exhaustive] pub struct Finalized { - pub run_id: RunId, - pub outcome: Result, - pub conclusion: Conclusion, - pub pushed_branch: Option, - pub pr_url: Option, + pub run_id: RunId, + pub outcome: Result, + pub conclusion: Conclusion, + pub pr_url: Option, } /// Options for the TRANSFORM phase.