From 827a47dae17f849407608e9a043142b49ee9ce8c Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 24 Feb 2023 08:24:17 +0100 Subject: [PATCH] CI: limit which branches get tested --- .github/workflows/CI.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 05d0be4f3..64512b858 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,8 +1,12 @@ name: Run tests on: - - push - - pull_request + push: + branches: + - 'master' + - 'release-' + tags: '*' + pull_request: concurrency: # group by workflow and ref; the last slightly strange component ensures that for pull