From a068f1c96d0dab84a98b654e9fe45bcb7cc5b02a Mon Sep 17 00:00:00 2001 From: Juerg B <44573692+juergba@users.noreply.github.com> Date: Tue, 22 Jun 2021 13:58:19 +0200 Subject: [PATCH] GHA: don't run CI tests for 'push' events on tags (#4664) --- .browserslistrc | 2 +- .github/workflows/delete-runs.yml | 2 +- .github/workflows/mocha.yml | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.browserslistrc b/.browserslistrc index a60e6a2256..d728f47ec6 100644 --- a/.browserslistrc +++ b/.browserslistrc @@ -1,4 +1,4 @@ -node >= 10 +node >= 12 last 2 Chrome versions last 2 Edge versions last 2 Firefox versions diff --git a/.github/workflows/delete-runs.yml b/.github/workflows/delete-runs.yml index e8e89a1aa2..ac0d26ebca 100644 --- a/.github/workflows/delete-runs.yml +++ b/.github/workflows/delete-runs.yml @@ -5,7 +5,7 @@ on: days: description: 'Number of days' required: true - default: 120 + default: 180 jobs: del_runs: diff --git a/.github/workflows/mocha.yml b/.github/workflows/mocha.yml index fdc0a00029..686d599a77 100644 --- a/.github/workflows/mocha.yml +++ b/.github/workflows/mocha.yml @@ -1,6 +1,10 @@ name: Tests -'on': +on: push: + branches: + - '**' + tags-ignore: + - '**' pull_request: types: - opened