diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/back-ci.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/front-ci.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/back-ci.yaml b/.github/workflows/back-ci.yaml index d489e1ae..80352279 100644 --- a/.github/workflows/back-ci.yaml +++ b/.github/workflows/back-ci.yaml @@ -2,11 +2,11 @@ name: Back End CI on:
push:
- branches: [master]
+ branches: [main]
paths:
- "BackEnd/**"
pull_request:
- branches: [master]
+ branches: [main]
paths:
- "BackEnd/**"
diff --git a/.github/workflows/front-ci.yaml b/.github/workflows/front-ci.yaml index 2373c48c..028f64d1 100644 --- a/.github/workflows/front-ci.yaml +++ b/.github/workflows/front-ci.yaml @@ -2,11 +2,11 @@ name: Front End CI on:
push:
- branches: [master]
+ branches: [main]
paths:
- "FrontEnd/**"
pull_request:
- branches: [master]
+ branches: [main]
paths:
- "FrontEnd/**"
|