From 0c30698f9621cbae61c027053f7c5c9fb030a823 Mon Sep 17 00:00:00 2001 From: Anumita Shenoy Date: Fri, 11 Oct 2019 16:24:26 +0530 Subject: [PATCH] Added compliance details --- CONTRIBUTING.md | 13 +++++++++++++ lib/run.js | 2 ++ src/run.ts | 7 +++++-- 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..180de51 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,13 @@ +# Contributing + +This project welcomes contributions and suggestions. Most contributions require you to agree to a +Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us +the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. + +When you submit a pull request, a CLA bot will automatically determine whether you need to provide +a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions +provided by the bot. You will only need to do this once across all repos using our CLA. + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). +For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or +contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. diff --git a/lib/run.js b/lib/run.js index bc3cd6b..f556b6c 100644 --- a/lib/run.js +++ b/lib/run.js @@ -1,4 +1,6 @@ "use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { diff --git a/src/run.ts b/src/run.ts index 9b2e6d3..a2262f4 100644 --- a/src/run.ts +++ b/src/run.ts @@ -1,10 +1,13 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + import * as os from 'os'; import * as path from 'path'; import * as util from 'util'; import * as fs from 'fs'; -import * as toolCache from '../node_modules/@actions/tool-cache'; -import * as core from '../node_modules/@actions/core'; +import * as toolCache from '@actions/tool-cache'; +import * as core from '@actions/core'; const helmToolName = 'helm'; const stableHelmVersion = 'v2.14.1';