I have a build pipeline defined in buildkite as below:
- block: ":terraform: benchmark?"
fields:
- text: "name"
key: "name"
required: false
default: "10"
It has a block which means it requires developers to unblock the step manually. Also it set a field used in the build step which means developers who unblock the step need to type in a value for the name
. I wonder how I can schedule this job to let it run periodically? How can I make the scheduler unblocks the step and give a predefined value for name
field?