We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1347c5 commit e8fcb67Copy full SHA for e8fcb67
1 file changed
app/cli/cmd/root.go
@@ -153,7 +153,7 @@ func NewRootCmd(l zerolog.Logger) *cobra.Command {
153
154
// Warn users when the session is interactive, and the operation is supposed to use an API token instead
155
if shouldAskForConfirmation(cmd) && isUserToken && !flagYes {
156
- logger.Warn().Msgf("You are running in user-attended mode. For automated workflows, use an API token instead.")
+logger.Warn().Msg("User-attended mode detected. This is intended for local testing only. For CI/CD or automated workflows, please use an API token.")
157
if !confirmationPrompt(fmt.Sprintf("This command will run against the organization %q", orgName)) {
158
return errors.New("command canceled by user")
159
}
0 commit comments