Skip to content

Commit

Permalink
fix: address missing links in provisioning, updated tags in package m…
Browse files Browse the repository at this point in the history
…anager (microsoft#7458)

* fix microsoft#7454: add msbot-middleware to list of tags used to identify a code-driven pacakge

* Fix microsoft#7449: update links in provision flow

Co-authored-by: Chris Whitten <[email protected]>
  • Loading branch information
benbrown and cwhitten authored Apr 28, 2021
1 parent 01b88fd commit 8d2d398
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const ImportActionContent = () => {
<Text>- {formatMessage('Microsoft QnA Maker')}</Text>
</ResourceTitle>
</Details>
<LearnMoreLink href="https://aka.ms/composer-publish-bot#import-existing-azure-resources">
<LearnMoreLink href="https://aka.ms/composer-getstarted-importpublishing" target="_blank">
{formatMessage('Learn More')}
</LearnMoreLink>
</Content>
Expand Down Expand Up @@ -203,7 +203,7 @@ const GenerateActionContent = () => {
</InstructionDetails>
</Instruction>
</Details>
<LearnMoreLink href="https://aka.ms/composer-publish-bot#handoff-to-admin">
<LearnMoreLink href="https://aka.ms/composer-publishingprofile-handoffadmin" target="_blank">
{formatMessage('Learn More')}
</LearnMoreLink>
</Content>
Expand Down
3 changes: 2 additions & 1 deletion extensions/packageManager/src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const hasSchema = (c) => {
c.keywords?.includes('msbot-adapter') ||
c.keywords?.includes('msbot-function') ||
c.keywords?.includes('msbot-recognizer') ||
c.keywords?.includes('msbot-storage')
c.keywords?.includes('msbot-storage') ||
c.keywords?.includes('msbot-middleware')
);
};

Expand Down

0 comments on commit 8d2d398

Please sign in to comment.