# Retry a block step

**URL:** https://forum.buildkite.community/t/retry-a-block-step/3979
**Category:** Pipelines
**Created:** [October 17, 2024, 10:07pm UTC](https://forum.buildkite.community/t/retry-a-block-step/3979 "2024-10-17T22:07:45Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![rryan](https://avatars.discourse-cdn.com/v4/letter/r/bc79bd/32.png) [@rryan](https://forum.buildkite.community/u/rryan)
#### Post date: [October 17, 2024, 10:07pm UTC](https://forum.buildkite.community/t/retry-a-block-step/3979/1 "2024-10-17T22:07:45Z")

</div>

I have a block step with text field to ask user for information. The thing is, the user might have a typo or a change of mind, and want to change the field and re-trigger the block and following steps that depend on the block. Is there a way to do so?

Currently I tell users to retrigger the whole build but it takes quite some time for the previous steps (that the block step depends on) to finish.

---

<div class="post-metadata">

### Author: ![lizette](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.buildkite.community/lizette/32/1161_2.png) [@lizette](https://forum.buildkite.community/u/lizette)
#### Post date: [October 17, 2024, 11:11pm UTC](https://forum.buildkite.community/t/retry-a-block-step/3979/2 "2024-10-17T23:11:24Z")

</div>

Hi @rryan,

Currently, editing values for block steps are currently not supported. The only workaround I can think of here would require splitting your pipelines:

pipeline-1:

- to include initial build steps
- trigger pipeline-2

pipeline-2:

- start with the block steps
- proceed with the succeeding steps dependent on block step inputs

You can modify your block steps input values by running a rebuild on `pipeline-2`.

Hope this helps!

Cheers.

---

<div class="post-metadata">

### Author: ![rryan](https://avatars.discourse-cdn.com/v4/letter/r/bc79bd/32.png) [@rryan](https://forum.buildkite.community/u/rryan)
#### Post date: [October 21, 2024, 4:56pm UTC](https://forum.buildkite.community/t/retry-a-block-step/3979/3 "2024-10-21T16:56:27Z")

</div>

Got it. Thanks for the reply
