diff --git a/src/commands/export.ts b/src/commands/export.ts index 7acdab51f..9c721d94d 100644 --- a/src/commands/export.ts +++ b/src/commands/export.ts @@ -60,4 +60,16 @@ export default async function exportCMD(params: ExportParams) { const context = await setupContext(nconf.get(), 'export'); await context.dump(); log.info('Export Successful'); + + log.info(` + ================================================ + ======= Help us improve Auth0 Deploy CLI ======= + ================================================ + We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help. + We've put together a brief survey to understand how you use Deploy CLI, what you love about it, and where you think we can do better. + + ===> https://www.surveymonkey.com/r/LZKMPFN <=== + + Thank you for helping us make Auth0 Deploy CLI better for everyone! + ================================================`); } diff --git a/src/commands/import.ts b/src/commands/import.ts index 58c598459..ce81bc2ad 100644 --- a/src/commands/import.ts +++ b/src/commands/import.ts @@ -52,4 +52,16 @@ export default async function importCMD(params: ImportParams) { await toolsDeploy(context.assets, context.mgmtClient, config); log.info('Import Successful'); + + log.info(` + ================================================ + ======= Help us improve Auth0 Deploy CLI ======= + ================================================ + We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help. + We've put together a brief survey to understand how you use Deploy CLI, what you love about it, and where you think we can do better. + + ===> https://www.surveymonkey.com/r/LZKMPFN <=== + + Thank you for helping us make Auth0 Deploy CLI better for everyone! + ================================================`); }