From 65760b1189df9a7110c67d3d3f93817880dc205e Mon Sep 17 00:00:00 2001 From: stefins Date: Sat, 11 Feb 2023 01:16:50 +0530 Subject: [PATCH] Update CI to run on main branch events --- .github/workflows/ci.yml | 4 ++-- .github/workflows/deploy.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0220beb..e1a77d5 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 8bc2109..3fb3f86 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