From 61713084dd596b3a6626ac815b297c5e7d808e72 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Sat, 25 Oct 2025 00:08:44 -0600 Subject: [PATCH] Add Step::shell --- crates/gh-workflow/src/step.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/gh-workflow/src/step.rs b/crates/gh-workflow/src/step.rs index cfd6b20..fa79477 100644 --- a/crates/gh-workflow/src/step.rs +++ b/crates/gh-workflow/src/step.rs @@ -134,6 +134,10 @@ pub struct StepValue { #[setters(skip)] pub run: Option, + /// Shell to run with + #[serde(skip_serializing_if = "Option::is_none")] + pub shell: Option, + /// Environment variables for the step. #[serde(skip_serializing_if = "Option::is_none")] pub env: Option,