From d0ba9c416a2a8fe007ed6f907c11f0823d970b27 Mon Sep 17 00:00:00 2001 From: Arseniy Zaostrovnykh Date: Tue, 1 Jun 2021 17:27:59 +0200 Subject: [PATCH] Restrict the deployment only to master+rule/* branches --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5589a2699a..ef25e14720 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,5 +1,10 @@ name: Build and Deploy -on: push +on: + push: + branches: + - master + - rule/** + jobs: build-and-deploy: runs-on: ubuntu-latest