diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0220beb4..e1a77d5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] jobs: unit-tests: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8bc2109b..3fb3f86d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,9 +4,9 @@ name: CD # Controls when the action will run. on: - # Triggers the workflow on push or pull request events but only for the master branch + # Triggers the workflow on push or pull request events but only for the main branch push: - branches: [ master ] + branches: [ main ] pull_request: # Allows you to run this workflow manually from the Actions tab