You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd love to be able to give "prompt" an array of prompts.
We have a task that releases to production. Right now we have one prompt that contains multiple questions and checks for the user.
I'd like to split those questions into multiple.
So instead of
version: '3'
tasks:
deploy:production:
desc: Release to prod
prompt: "Do you wish to release to version {{.RELEASE_VERSION}}? Have you remembered to log into harbor today? Have you announced the release on Slack and aligned with team Foo?"
I'd like to do this
version: '3'
tasks:
deploy:production:
desc: Release to prod
prompt:
- Do you wish to release to version {{.RELEASE_VERSION}}?
- Have you remembered to log into harbor today?
- Have you announced the release on Slack?
- Have you aligned with team Foo?
The text was updated successfully, but these errors were encountered:
I'd love to be able to give "prompt" an array of prompts.
We have a task that releases to production. Right now we have one prompt that contains multiple questions and checks for the user.
I'd like to split those questions into multiple.
So instead of
I'd like to do this
The text was updated successfully, but these errors were encountered: