Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

[Botskills] Move location to tools folder #1666

Merged
merged 5 commits into from
Jun 28, 2019
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/howto/skills/addingskills.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ botskills connect --botName YOUR_BOT_NAME --remoteManifest "http://<YOUR_SKILL_M

*Remember to re-publish your Assistant to Azure after you've added a Skill unless you plan on testing locally only**

See the [Skill CLI documentation](/lib/typescript/botskills/docs/connect-disconnect.md) for detailed CLI documentation.
See the [Skill CLI documentation](/tools/botskills/docs/connect-disconnect.md) for detailed CLI documentation.

## Manual Authentication Connection configuration

Expand Down Expand Up @@ -73,7 +73,7 @@ botskills:
botskills disconnect --skillId SKILL_ID
```

> Note: The id of the Skill can also be aquired using the `botskills list` command. You can check the [Skill CLI documentation](/lib/typescript/botskills/docs/list.md) on this command.
> Note: The id of the Skill can also be aquired using the `botskills list` command. You can check the [Skill CLI documentation](/tools/botskills/docs/list.md) on this command.

## Updating an existing Skill to reflect changes to Actions or LUIS model

Expand Down
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions yaml/typescript/botskills.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ trigger:

paths:
include:
- lib/typescript/botskills/*
- tools/botskills/*

# By default will disable PR builds
pr: none
Expand All @@ -21,36 +21,36 @@ steps:
- task: Npm@1
displayName: 'npm install'
inputs:
workingDir: lib/typescript/botskills
workingDir: tools/botskills
verbose: false

- task: Npm@1
displayName: 'npm run build'
inputs:
command: custom
workingDir: lib/typescript/botskills
workingDir: tools/botskills
verbose: false
customCommand: 'run build'

- task: Npm@1
displayName: 'npm test - coverage'
inputs:
command: custom
workingDir: lib/typescript/botskills
workingDir: tools/botskills
verbose: false
customCommand: 'run test-coverage-ci'

- task: PublishTestResults@2
displayName: 'publish test results'
inputs:
testResultsFiles: 'test-results.xml'
searchFolder: 'lib/typescript/botskills'
searchFolder: 'tools/botskills'
failTaskOnFailedTests: true

- task: PublishCodeCoverageResults@1
displayName: 'publish code coverage'
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: 'lib/typescript/botskills/coverage/cobertura-coverage.xml'
reportDirectory: 'lib/typescript/botskills/coverage/'
summaryFileLocation: 'tools/botskills/coverage/cobertura-coverage.xml'
reportDirectory: 'tools/botskills/coverage/'