From 2ec50a972b15facb74d64692441f2de531b3a251 Mon Sep 17 00:00:00 2001 From: Alex Lavrov <36633600+alexslavr@users.noreply.github.com> Date: Mon, 11 May 2026 19:16:39 +0400 Subject: [PATCH] Do not run checks twice on feature branches --- .github/workflows/applications.yml | 1 + .github/workflows/check-nextjs.yml | 1 + .github/workflows/lint.yml | 5 ++++- .github/workflows/themebuilder.yml | 5 ++++- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/applications.yml b/.github/workflows/applications.yml index a2b72adbe..21834747b 100644 --- a/.github/workflows/applications.yml +++ b/.github/workflows/applications.yml @@ -2,6 +2,7 @@ name: Application tests on: push: + branches: [ "master" ] pull_request: workflow_call: inputs: diff --git a/.github/workflows/check-nextjs.yml b/.github/workflows/check-nextjs.yml index c85fe9bcb..762644765 100644 --- a/.github/workflows/check-nextjs.yml +++ b/.github/workflows/check-nextjs.yml @@ -2,6 +2,7 @@ name: Check "add devextreme-react" for NextJS app on: push: + branches: [ "master" ] pull_request: workflow_dispatch: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 594c61a31..bb351ad72 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,9 @@ name: Lint tests -on: [push, pull_request] +on: + push: + branches: [ "master" ] + pull_request: jobs: lint-test: diff --git a/.github/workflows/themebuilder.yml b/.github/workflows/themebuilder.yml index 117fbc798..7096b18ed 100644 --- a/.github/workflows/themebuilder.yml +++ b/.github/workflows/themebuilder.yml @@ -1,6 +1,9 @@ name: ThemeBuilder tests -on: [push, pull_request] +on: + push: + branches: [ "master" ] + pull_request: jobs: themebuilder-test: