Skip to content
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
2 changes: 1 addition & 1 deletion packages/cli/internal/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func runInitWithDeps(opts InitOptions, deps *Dependencies) error {
if apiErr.StatusCode == 403 && apiErr.TrialInfo != nil && apiErr.TrialInfo.Eligible && deps.UI.IsInteractive() {
trialInfo := apiErr.TrialInfo
deps.UI.Warn("This repository belongs to an organization on the Free plan")
deps.UI.Message(deps.UI.Dim(fmt.Sprintf("Private organization repos require a Team plan, but you can start a %d-day free trial.", trialInfo.DaysAvailable)))
deps.UI.Message(deps.UI.Dim(fmt.Sprintf("The organization has reached a Free plan limit, but you can start a %d-day free trial.", trialInfo.DaysAvailable)))

startTrial, _ := deps.UI.Confirm(fmt.Sprintf("Start %d-day free trial for %s?", trialInfo.DaysAvailable, trialInfo.OrgLogin), true)
if startTrial {
Expand Down
Loading