Skip to content

Commit 727ce6d

Browse files
committed
🔧 Fix GitHub Actions: Update branch triggers to include master
- Updated CI workflow to trigger on master, main, and develop branches - This will enable GitHub Actions to run on our current master branch - Actions will now automatically run tests, linting, and Docker builds
1 parent 8440001 commit 727ce6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: MoR CI/CD Pipeline
22

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches: [ master, main, develop ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ master, main ]
88

99
jobs:
1010
test:

0 commit comments

Comments
 (0)