Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ADO extension manifest #468

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ node_modules
# VS extenstions
*.vsix

# generated js files for ADO extension
/vsts_extension/Tasks/HydraLabDeployTest/hydra-lab-deploy-test.js
/vsts_extension/Tasks/HydraLabDeployTest/hydra-lab-deploy-test.js.map

# Credential and local env specified files
local.properties
application-local.yml
Expand Down
4 changes: 2 additions & 2 deletions vsts_extension/Tasks/HydraLabDeployTest/task.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"id": "faa2220b-3a71-4022-873e-d5b7b188eb53",
"id": "9942F8CF-A440-EA84-C607-732E5DB242C9",
"name": "HydraLabDeployTest",
"friendlyName": "Deploy Test to HydraLab",
"description": "Deploy Test to HydraLab",
Expand All @@ -24,7 +24,7 @@
"aliases": [
"serviceConnection"
],
"type": "connectedService:hydra-lab",
"type": "connectedService:hydra-lab-alter",
"label": "Service connection",
"defaultValue": "",
"required": true,
Expand Down
2 changes: 1 addition & 1 deletion vsts_extension/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

This extension contains a set of deployment tasks which allow you to automate deploy tests to Hydra Lab from your CI environment. This can reduce the effort needed to test your app, since you can simply push changes to the configured source control branches, and let your automated build take care of the rest.
This extension contains a set of deployment tasks which allow you to automatically deploy tests to Hydra Lab from your CI environment. This can streamline the testing process, since you only need to push changes to the specified source control branches, and let your automated build handle the rest.

# Introduction of Hydra Lab Platform

Expand Down
6 changes: 3 additions & 3 deletions vsts_extension/vss-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifestVersion": 1,
"id": "hydra-lab",
"id": "hydra-lab-alter",
"name": "Hydra Lab",
"version": "2.0.13",
"publisher": "",
Expand All @@ -10,7 +10,7 @@
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Hydra Lab Azure Devops Extension - Allow you to automate deploy tests to Hydra Lab platform from your CI/CD environment.",
"description": "Hydra Lab Azure Devops Extension - Allow you to automatically deploy tests to Hydra Lab platform from your CI/CD environment.",
"categories": [
"Azure Pipelines"
],
Expand Down Expand Up @@ -54,7 +54,7 @@
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "hydra-lab",
"name": "hydra-lab-alter",
"displayName": "Hydra Lab",
"url": "https://example.com",
"inputDescriptors": [],
Expand Down