Skip to content

Commit b15b69d

Browse files
committed
fix: add master branch to workflow triggers
Both CI and SonarCloud workflows now trigger on master branch in addition to main/develop.
1 parent fddfb27 commit b15b69d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ name: CI
1717

1818
on:
1919
push:
20-
branches: [main, develop]
20+
branches: [main, master, develop]
2121
pull_request:
2222
types: [opened, synchronize, reopened]
23-
branches: [main, develop]
23+
branches: [main, master, develop]
2424
workflow_dispatch:
2525

2626
permissions:

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ on:
1717
push:
1818
branches:
1919
- main
20+
- master
2021
- develop
2122
pull_request:
2223
types: [opened, synchronize, reopened]
2324
branches:
2425
- main
26+
- master
2527
- develop
2628
workflow_dispatch:
2729

0 commit comments

Comments
 (0)