From 8413d1ea25f0cf3d519ec8bd5c9f4ba790e1fa34 Mon Sep 17 00:00:00 2001 From: Chris Todorov Date: Thu, 11 May 2023 15:16:52 -0700 Subject: [PATCH] Update circle.ci configuration for branch name Solidus' development branch is now called `main` and as a result the CI orb was updated with jobs to reflect that. This renames the workflow to reflect the change in the Orb as well as renames the job define in this config to reflect that. --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0722b521..e8f684e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,11 +20,11 @@ commands: bundle --version jobs: - solidus-master: + solidus-main: executor: name: solidusio_extensions/sqlite ruby_version: '3.1' - steps: ['setup', 'solidusio_extensions/run-tests-solidus-master'] + steps: ['setup', 'solidusio_extensions/run-tests-solidus-main'] solidus-current: executor: name: solidusio_extensions/sqlite @@ -44,7 +44,7 @@ jobs: workflows: "Run specs on supported Solidus versions": jobs: - - solidus-master + - solidus-main - solidus-current - solidus-older - lint-code @@ -58,6 +58,6 @@ workflows: only: - master jobs: - - solidus-master + - solidus-main - solidus-current - solidus-older