Skip to content

Commit 2ec50a9

Browse files
committed
Do not run checks twice on feature branches
1 parent a244721 commit 2ec50a9

4 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/applications.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Application tests
22

33
on:
44
push:
5+
branches: [ "master" ]
56
pull_request:
67
workflow_call:
78
inputs:

.github/workflows/check-nextjs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Check "add devextreme-react" for NextJS app
22

33
on:
44
push:
5+
branches: [ "master" ]
56
pull_request:
67
workflow_dispatch:
78

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Lint tests
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
47

58
jobs:
69
lint-test:

.github/workflows/themebuilder.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: ThemeBuilder tests
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
47

58
jobs:
69
themebuilder-test:

0 commit comments

Comments
 (0)