From fcf5e68a285986c4204fc0d34851b585fcfbf556 Mon Sep 17 00:00:00 2001 From: rakita Date: Mon, 5 Jun 2023 16:45:41 +0200 Subject: [PATCH] feat: Run CI on release branches --- .github/workflows/ci.yml | 4 ++-- .github/workflows/ethereum-tests.yml | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43cb312f57..8ddf03ec56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: Tests on: push: - branches: [main] + branches: [main,'releases/**'] pull_request: - branches: [main] + branches: [main,'releases/**'] jobs: tests-stable: diff --git a/.github/workflows/ethereum-tests.yml b/.github/workflows/ethereum-tests.yml index 13384d56d7..8a39d06fdc 100644 --- a/.github/workflows/ethereum-tests.yml +++ b/.github/workflows/ethereum-tests.yml @@ -1,10 +1,8 @@ on: push: - branches: - - main + branches: [main,'releases/**'] pull_request: - branches: - - main + branches: [main,'releases/**'] name: Ethereum Tests