Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit edbc5d1

Browse files
committed
action: remove duplicated fields
Signed-off-by: William Woodruff <[email protected]>
1 parent eebd7f2 commit edbc5d1

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/action.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,6 @@ pub enum StepBody {
135135
/// Any inputs to the action being used.
136136
#[serde(default)]
137137
with: IndexMap<String, String>,
138-
139-
/// An optional expression that prevents this step from running unless it evaluates to `true`.
140-
r#if: Option<If>,
141138
},
142139
/// A step that runs a command in a shell.
143140
Run {
@@ -147,15 +144,6 @@ pub enum StepBody {
147144
/// The shell to run in.
148145
shell: String,
149146

150-
/// An optional name for this step.
151-
name: Option<String>,
152-
153-
/// An optional ID for this step.
154-
id: Option<String>,
155-
156-
/// An optional expression that prevents this step from running unless it evaluates to `true`.
157-
r#if: Option<If>,
158-
159147
/// An optional environment mapping for this step.
160148
#[serde(default)]
161149
env: LoE<Env>,

0 commit comments

Comments
 (0)