Skip to content

interactive mode: allow setting WD only for containers #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ func (m *metadataCollector) attachInteractiveForm(values *templateValues) error
Value(&values.Runtime.Type),
),
huh.NewGroup(
huh.NewSelect[string]().
Title("Working directory").
Description("Runtime type for the action").
Options(
huh.NewOption("Actions base dir", "{{ .actions_base_dir }})"),
huh.NewOption("Current working dir", "{{ .current_working_dir }}"),
).
Value(&values.WD),
huh.NewSelect[string]().
Title("- Choose container files preset").
Options(
Expand Down Expand Up @@ -141,14 +149,6 @@ func (m *metadataCollector) attachInteractiveForm(values *templateValues) error
return nil
}).
Value(&values.ID),
huh.NewSelect[string]().
Title("Working directory").
Description("Runtime type for the action").
Options(
huh.NewOption("Actions base dir", "{{ .actions_base_dir }})"),
huh.NewOption("Current working dir", "{{ .current_working_dir }}"),
).
Value(&values.WD),
),
)

Expand Down