From b4b3a7de8c5ea06c59c722e1f28f4a61c5d16340 Mon Sep 17 00:00:00 2001 From: Serge Kvashnin <75180587+serge-kvashnin@users.noreply.github.com> Date: Tue, 3 Oct 2023 14:27:57 +0200 Subject: [PATCH] Don't run actions when pushing tags. --- .github/workflows/benchmark.yml | 10 +++++++++- .github/workflows/checks.yml | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 6a7d046..4b228b4 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -1,4 +1,12 @@ -on: [ pull_request, push ] +on: + push: + branches: + - '**' + tags-ignore: + - '**' + pull_request: + branches: + - '**' name: "Benchmark" diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 785acce..abeaa8a 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,4 +1,12 @@ -on: [ pull_request, push ] +on: + push: + branches: + - '**' + tags-ignore: + - '**' + pull_request: + branches: + - '**' name: "Checks"