Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ export const GetStartedNextSteps: React.FC<GetStartedProps> = (props) => {

const openLink = (link) => {
TelemetryClient.track('GettingStartedLinkClicked', { method: 'link', url: link });
navigateTo(link);
if (link.startsWith('http')) {
// eslint-disable-next-line security/detect-non-literal-fs-filename
window.open(link, '_blank');
} else {
navigateTo(link);
}
};

const doNextStep = (currentStep) => {
Expand Down Expand Up @@ -93,6 +98,8 @@ export const GetStartedNextSteps: React.FC<GetStartedProps> = (props) => {
const linktoQNASettings = `/bot/${rootBotProjectId}/botProjectsSettings/#qnaKey`;
const linkToLGEditor = `/bot/${rootBotProjectId}/language-generation`;
const linkToLUEditor = `/bot/${rootBotProjectId}/language-understanding`;
const linkToAppInsights = 'http://aka.ms/botinsights';
const linkToDevOps = 'https://aka.ms/bfcomposercicd';

useEffect(() => {
const newNextSteps: NextSteps[] = [];
Expand Down Expand Up @@ -194,6 +201,28 @@ export const GetStartedNextSteps: React.FC<GetStartedProps> = (props) => {
openLink(linkToLUEditor);
},
},
{
key: 'insights',
label: formatMessage('Enable Insights'),
description: formatMessage(
'Collect service-level and conversation-level data to help gauge the performance and efficacy of your bot.'
),
learnMore: '',
checked: false,
onClick: () => {
openLink(linkToAppInsights);
},
},
{
key: 'devops',
label: formatMessage('Publish to Dev Ops'),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the brand name is "Azure DevOps"

description: formatMessage('Learn how to publish to a Dev Ops pipeline using CI / CD.'),
learnMore: '',
checked: false,
onClick: () => {
openLink(linkToDevOps);
},
},
];

if (hasPublishingProfile) {
Expand Down