Skip to content

Commit 81e0830

Browse files
committed
Limit CI workflows to supported branches
1 parent 51f1ea9 commit 81e0830

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.github/workflows/build-ci-atlas.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: "Atlas CI"
22

33
on:
44
push:
5+
branches:
6+
- "[0-9]+.[0-9x]+"
57
pull_request:
8+
branches:
9+
- "[0-9]+.[0-9x]+"
610

711
env:
812
MONGODB_EXT_V1: mongodb-1.21.0

.github/workflows/build-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: "CI"
22

33
on:
44
push:
5+
branches:
6+
- "[0-9]+.[0-9x]+"
57
pull_request:
8+
branches:
9+
- "[0-9]+.[0-9x]+"
610

711
env:
812
MONGODB_EXT_V1: mongodb-1.21.0

.github/workflows/coding-standards.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: "Coding Standards"
22

33
on:
44
push:
5+
branches:
6+
- "[0-9]+.[0-9x]+"
57
pull_request:
8+
branches:
9+
- "[0-9]+.[0-9x]+"
610

711
env:
812
PHP_VERSION: "8.4"

.github/workflows/static-analysis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: "Static Analysis"
22

33
on:
44
push:
5+
branches:
6+
- "[0-9]+.[0-9x]+"
57
pull_request:
8+
branches:
9+
- "[0-9]+.[0-9x]+"
610
workflow_call:
711
inputs:
812
ref:

0 commit comments

Comments
 (0)