From 4abade07001a71cd149230954d1df3c8c97f3dc9 Mon Sep 17 00:00:00 2001 From: Roman Melnikov Date: Mon, 2 Sep 2024 11:38:08 +0200 Subject: [PATCH] [Chore] Run CI on 'main' and 'staging' Problem: Currently CI is only run on pull requests. However, there is a 'deploy' job that is supposed to be run on 'staging' branch. Solution: Run CI on pushes to 'main' and 'staging' branches. --- .github/workflows/check.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 5d7fa17..38d8880 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -4,7 +4,10 @@ name: CI -on: [pull_request] +on: + pull_request: + push: + branches: [main, staging] jobs: validate: