From cb26106d257abe4395fd44da29410199f0dad21e Mon Sep 17 00:00:00 2001 From: Robin van der Linde Date: Tue, 31 Dec 2024 23:02:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Tune=20down=20actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 8 +++++++- .github/workflows/lint.yaml | 8 +++++++- LICENSE => LICENSE.md | 4 ++-- 3 files changed, 16 insertions(+), 4 deletions(-) rename LICENSE => LICENSE.md (97%) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index af35ece..9a8c8a8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,5 +1,11 @@ name: Build extension -on: [push, pull_request] +on: + push: + paths-ignore: + - "**.md" + pull_request: + paths-ignore: + - "**.md" jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 8a95a83..eabf270 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,5 +1,11 @@ name: Linter -on: [push, pull_request] +on: + push: + paths-ignore: + - "**.md" + pull_request: + paths-ignore: + - "**.md" jobs: lint: runs-on: ubuntu-latest diff --git a/LICENSE b/LICENSE.md similarity index 97% rename from LICENSE rename to LICENSE.md index 2c8c62c..629053f 100644 --- a/LICENSE +++ b/LICENSE.md @@ -1,4 +1,4 @@ -MIT License +# MIT License Copyright (c) 2024 Robin van der Linde @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE.