From 104baaad727033712e0c5a86eadaabc6649ce047 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 3 May 2021 20:39:28 -0700 Subject: [PATCH] Remove extraneous text from license file In order to be recognized by GitHub's automatic license detection system, the license file must contain only the exact license text, which can be sourced from choosealicense.com. Please do not modify this file in any way. --- LICENSE | 14 -------------- __tests__/main.test.ts | 12 ++++++++++++ src/installer.ts | 12 ++++++++++++ src/main.ts | 12 ++++++++++++ 4 files changed, 36 insertions(+), 14 deletions(-) diff --git a/LICENSE b/LICENSE index fdb63837..f288702d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,17 +1,3 @@ -This file includes licensing information for Arduino GitHub Actions. - -Copyright (c) 2019 ARDUINO SA - -The software is released under the GNU General Public License, which covers the main body -of the [insert app name] code. The terms of this license can be found at: -https://www.gnu.org/licenses/gpl-3.0.en.html - -You can be released from the requirements of the above licenses by purchasing -a commercial license. Buying such a license is mandatory if you want to modify or -otherwise use the software for commercial activities involving the Arduino -software without disclosing the source code of your own applications. To purchase -a commercial license, send an email to license@arduino.cc - GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 31dbe9a4..164ae52b 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -1,3 +1,15 @@ +// Copyright (c) 2019 ARDUINO SA +// +// The software is released under the GNU General Public License, which covers the main body +// of the arduino/setup-taskfile code. The terms of this license can be found at: +// https://www.gnu.org/licenses/gpl-3.0.en.html +// +// You can be released from the requirements of the above licenses by purchasing +// a commercial license. Buying such a license is mandatory if you want to modify or +// otherwise use the software for commercial activities involving the Arduino +// software without disclosing the source code of your own applications. To purchase +// a commercial license, send an email to license@arduino.cc + import io = require("@actions/io"); import path = require("path"); import os = require("os"); diff --git a/src/installer.ts b/src/installer.ts index d8099de2..bb7dece7 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -1,3 +1,15 @@ +// Copyright (c) 2019 ARDUINO SA +// +// The software is released under the GNU General Public License, which covers the main body +// of the arduino/setup-taskfile code. The terms of this license can be found at: +// https://www.gnu.org/licenses/gpl-3.0.en.html +// +// You can be released from the requirements of the above licenses by purchasing +// a commercial license. Buying such a license is mandatory if you want to modify or +// otherwise use the software for commercial activities involving the Arduino +// software without disclosing the source code of your own applications. To purchase +// a commercial license, send an email to license@arduino.cc + // Load tempDirectory before it gets wiped by tool-cache let tempDirectory = process.env["RUNNER_TEMP"] || ""; diff --git a/src/main.ts b/src/main.ts index 91cdd656..355f20a2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,3 +1,15 @@ +// Copyright (c) 2019 ARDUINO SA +// +// The software is released under the GNU General Public License, which covers the main body +// of the arduino/setup-taskfile code. The terms of this license can be found at: +// https://www.gnu.org/licenses/gpl-3.0.en.html +// +// You can be released from the requirements of the above licenses by purchasing +// a commercial license. Buying such a license is mandatory if you want to modify or +// otherwise use the software for commercial activities involving the Arduino +// software without disclosing the source code of your own applications. To purchase +// a commercial license, send an email to license@arduino.cc + import * as core from "@actions/core"; import * as installer from "./installer";