Skip to content

Commit

Permalink
Merge branch 'master' into users/shmittal/AzurePowerShellV5
Browse files Browse the repository at this point in the history
  • Loading branch information
20shivangi authored Nov 18, 2019
2 parents 31fd4de + f0bf16d commit f959f7f
Show file tree
Hide file tree
Showing 343 changed files with 5,261 additions and 3,514 deletions.
34 changes: 17 additions & 17 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ Tasks/CmdLineV2/* @jtpetty

Tasks/CocoaPodsV0/* @leantk

Tasks/Common/artifacts-common/* @zjrunner @zarenner @shubham90
Tasks/Common/artifacts-common/* @jotaylo @shubham90

Tasks/Common/AzureRmDeploy-common/* @vincentdass @SumiranAgg

Tasks/Common/Deployment/* @bishal-pdMSFT @chshrikh

Tasks/Common/MSBuildHelpers/* @ericsciple @austin-jensen
Tasks/Common/MSBuildHelpers/* @daveken

Tasks/Common/PowershellHelpers/* @bishal-pdMSFT @hiyadav

Expand Down Expand Up @@ -179,7 +179,7 @@ Tasks/DownloadFileshareArtifactsV0/* @Lovakumar @omeshp

Tasks/DownloadGitHubReleasesV0/* @Lovakumar @gykuma

Tasks/DownloadPackageV0/* @zjrunner
Tasks/DownloadPackageV0/* @jotaylo @shubham90

Tasks/DownloadPipelineArtifactV0/* @mihaif @jahsu-MSFT @fadnavistanmay @owenhuynMSFT @arunkm

Expand Down Expand Up @@ -247,7 +247,7 @@ Tasks/KubernetesManifestV0/* @vithati

Tasks/ManualInterventionV8/* @vithati

Tasks/MavenAuthenticateV0/* @zjrunner @aasim
Tasks/MavenAuthenticateV0/* @jotaylo @shubham90 @aasim

Tasks/MavenV2/* @leantk

Expand All @@ -259,31 +259,31 @@ Tasks/MysqlDeploymentOnMachineGroupV1/* @kmkumaran @RoshanKumarMicrosof

Tasks/NodeToolV0/* @damccorm

Tasks/NpmV1/* @zjrunner @jotaylo
Tasks/NpmV1/* @jotaylo

Tasks/NpmAuthenticateV0/* @zjrunner
Tasks/NpmAuthenticateV0/* @jotaylo @shubham90

Tasks/NuGetV0/* @zjrunner
Tasks/NuGetV0/* @jotaylo @shubham90

Tasks/NuGetCommandV2/* @zjrunner @jotaylo
Tasks/NuGetCommandV2/* @jotaylo @shubham90

Tasks/NuGetAuthenticateV0/* @zjrunner @zarenner
Tasks/NuGetAuthenticateV0/* @jotaylo @shubham90

Tasks/NuGetPackagerV0/* @zjrunner
Tasks/NuGetPackagerV0/* @jotaylo @shubham90

Tasks/NuGetPublisherV0/* @zjrunner
Tasks/NuGetPublisherV0/* @jotaylo @shubham90

Tasks/NuGetToolInstallerV0/* @zjrunner
Tasks/NuGetToolInstallerV0/* @jotaylo @shubham90

Tasks/OpenPolicyAgentInstallerV0/* @Anumita

Tasks/PackerBuildV0/* @bishal-pdmsft

Tasks/PackerBuildV1/* @bishal-pdmsft

Tasks/PipAuthenticateV0/* @zjrunner @shubham90
Tasks/PipAuthenticateV0/* @shubham90

Tasks/PipAuthenticateV1/* @zjrunner @shubham90
Tasks/PipAuthenticateV1/* @shubham90

Tasks/PowerShellV2/* @jtpetty

Expand Down Expand Up @@ -345,11 +345,11 @@ Tasks/SqlServerDacpacDeployment/* @kmkumaran

Tasks/SshV0/* @leantk

Tasks/TwineAuthenticateV0/* @zjrunner
Tasks/TwineAuthenticateV0/* @shubham90

Tasks/TwineAuthenticateV1/* @zjrunner @shubham90
Tasks/TwineAuthenticateV1/* @shubham90

Tasks/UniversalPackagesV0/* @zjrunner
Tasks/UniversalPackagesV0/* @shubham90 @jotaylo

Tasks/UseDotNetV2/* @bishal-pdmsft

Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Labeler
on: [issues]
on:
issues:
types: [opened]

jobs:
label:
Expand All @@ -12,3 +14,17 @@ jobs:
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: "./issue-rules.yml"

- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x

# Need to explicitly install @octokit/rest seperately or else it will mess with our typings.
- run: npm install && npm install @octokit/rest

- name: File bugs
run: node ci/file-bugs.js
env:
GITHUB_PAT: "${{ secrets.GITHUB_TOKEN }}"
AZP_PAT: "${{ secrets.AZP_TOKEN }}"
16 changes: 16 additions & 0 deletions Tasks/ANTV1/Tests/L0.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import fs = require('fs');
import assert = require('assert');
import path = require('path');

describe('AntV1 Suite', function () {
before(() => {
});

after(() => {
});

it('Does a basic hello world test', function(done: MochaDone) {
// TODO - add real tests
done();
});
});
14 changes: 14 additions & 0 deletions Tasks/ANTV1/Tests/package-lock.json

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

22 changes: 22 additions & 0 deletions Tasks/ANTV1/Tests/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "antv1-tests",
"version": "1.0.0",
"description": "Azure Pipelines Ant V1 Task Tests",
"main": "L0.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Microsoft/azure-pipelines-tasks.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/azure-pipelines-tasks/issues"
},
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"devDependencies": {
"@types/mocha": "^5.2.0"
}
}
Loading

0 comments on commit f959f7f

Please sign in to comment.