Skip to content
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.

Commit

Permalink
Making public
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscoombs committed Mar 19, 2019
1 parent 51189cb commit 8161548
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 31 deletions.
2 changes: 1 addition & 1 deletion function/package-lock.json

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

2 changes: 1 addition & 1 deletion function/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cancel-build-ci-trigger",
"version": "0.0.4",
"version": "0.0.5",
"description": "Compares the files in the triggering commit, with the CI path filters. If the CI path filters do not include (or exclude) the files in the triggering commit, the build is cancelled.",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions function/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"id": "b629298d-31f0-4261-8b9e-aa99349c8da9",
"name": "cancel-build-ci-trigger",
"friendlyName": "Cancel Build for CI Trigger",
"description": "The Cancel Build for CI Trigger task is to be used in conjunction with Continuous Integration (CI) path filters. The task compares the files in the triggering commit, with the CI path filters. If the CI path filters do not include (or exclude) the files in the triggering commit, the task cancels the build.",
"description": "Compares the files in the triggering commit, with the CI path filters. If the CI path filters do not include (or exclude) the files in the triggering commit, the build is cancelled.",
"helpMarkDown": "This task requires access to the OAuth token and cancel build permissions.",
"category": "Utility",
"author": "Chris Coombs",
"version": {
"Major": 0,
"Minor": 0,
"Patch": 4
"Patch": 5
},
"instanceNameFormat": "Cancel Build for CI Trigger",
"execution": {
Expand Down
58 changes: 31 additions & 27 deletions vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,52 +2,55 @@
"manifestVersion": 1,
"id": "cancel-build-ci-trigger",
"name": "Cancel Build for CI Trigger",
"version": "0.0.4",
"version": "0.0.5",
"publisher": "chriscoombs",
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"targets": [{
"id": "Microsoft.VisualStudio.Services.Cloud"
}],
"description": "Compares the files in the triggering commit, with the CI path filters. If the CI path filters do not include (or exclude) the files in the triggering commit, the build is cancelled.",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/extension-icon.png"
"default": "images/extension-icon.png"
},
"files": [
{
"path": "function/dist/index.js", "packagePath": "function/index.js"
"files": [{
"path": "function/dist/index.js",
"packagePath": "function/index.js"
},
{
"path": "function/dist/main.js", "packagePath": "function/main.js"
"path": "function/dist/main.js",
"packagePath": "function/main.js"
},
{
"path": "function/task.json", "packagePath": "function/task.json"
"path": "function/task.json",
"packagePath": "function/task.json"
},
{
"path": "function/node_modules", "packagePath": "function/node_modules"
"path": "function/node_modules",
"packagePath": "function/node_modules"
},
{
"path": "images/oauth.png", "packagePath": "images/oauth.png", "addressable": true
"path": "images/oauth.png",
"packagePath": "images/oauth.png",
"addressable": true
},
{
"path": "images/allow.png", "packagePath": "images/allow.png", "addressable": true
"path": "images/allow.png",
"packagePath": "images/allow.png",
"addressable": true
}
],
"contributions": [
{
"id": "custom-build-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "function"
}
"contributions": [{
"id": "custom-build-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "function"
}
],
}],
"content": {
"details": {
"path": "marketplace.md"
Expand All @@ -56,5 +59,6 @@
"repository": {
"type": "git",
"uri": "https://github.com/chriscoombs/cancel-build-ci-trigger"
}
},
"public": true
}

0 comments on commit 8161548

Please sign in to comment.