-
-
Notifications
You must be signed in to change notification settings - Fork 763
Labels
good first issueIssues that are good for first-time contributors to pick up.Issues that are good for first-time contributors to pick up.
Description
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?
Metadata
Metadata
Assignees
Labels
good first issueIssues that are good for first-time contributors to pick up.Issues that are good for first-time contributors to pick up.