Skip to content

Commit ed6c9b2

Browse files
authored
Merge pull request #2907 from daxgames/development_ci
Do CI on development PRs
2 parents 1895013 + 7753622 commit ed6c9b2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
tags:
1212
- "v*"
1313
pull_request:
14-
branches: [ "master" ]
14+
branches: [ "master", "development" ]
1515

1616
#---------------------------------#
1717
# environment configuration #

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ name: "CodeQL"
88

99
on:
1010
push:
11-
branches: [ "master" ]
11+
branches: [ "master", "development" ]
1212
paths-ignore:
1313
- '**/*.md'
1414
- '**/*.txt'
1515
- '.github/**'
1616
- '**/.gitignore'
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ "master" ]
19+
branches: [ "master", "development" ]
2020
paths-ignore:
2121
- '**/*.md'
2222
- '**/*.txt'

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
- development
78
paths-ignore:
89
- '**/*.md'
910
- '**/*.txt'
@@ -12,6 +13,7 @@ on:
1213
pull_request:
1314
branches:
1415
- master
16+
- development
1517
paths-ignore:
1618
- '**/*.md'
1719
- '**/*.txt'

0 commit comments

Comments
 (0)