Skip to content
This repository was archived by the owner on Apr 12, 2023. It is now read-only.

Commit b185621

Browse files
authored
Merge pull request #220 from keiji/support_feature_branches
[CI] Support feature branches
2 parents a2c4f41 + 4fe2469 commit b185621

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: CI-Mobile
55
on:
66
# Triggers the workflow on push or pull request events but only for the master branch
77
push:
8-
branches: [ main, develop ]
8+
branches: [ main, develop, 'feature/**' ]
99
pull_request:
10-
branches: [ main, develop ]
10+
branches: [ main, develop, 'feature/**' ]
1111
jobs:
1212
build_ios:
1313
name: Build-iOS

.github/workflows/CIserver.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: CI-Server
55
on:
66
# Triggers the workflow on push or pull request events but only for the master branch
77
push:
8-
branches: [ main, develop ]
8+
branches: [ main, develop, 'feature/**' ]
99
pull_request:
10-
branches: [ main, develop ]
10+
branches: [ main, develop, 'feature/**' ]
1111

1212
jobs:
1313
build_serverapi:

0 commit comments

Comments
 (0)