From c6e1eb406a3402ea4dc3e573339ba8d68ea85f8b Mon Sep 17 00:00:00 2001 From: Brian Smith <112954497+brian-smith-tcril@users.noreply.github.com> Date: Wed, 11 Dec 2024 18:28:17 -0500 Subject: [PATCH] build: update `releaserc` to ensure we have a "release" branch (#3345) Semantic release requires at least 1 branch be configured as "release" (see https://github.com/semantic-release/semantic-release/blob/master/docs/usage/workflow-configuration.md#branches-properties) Before this change we had 2 "maintenance" branches and 1 "pre-release" branch, but no "release" branch. This led to an error https://github.com/openedx/paragon/actions/runs/12286316911/job/34286199225 --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index adf6f9c63c..94b6f78223 100644 --- a/.releaserc +++ b/.releaserc @@ -1,7 +1,7 @@ { "branches": [ { "name": "release-22.x", "range": "22.x", "channel": "22.x" }, - { "name": "release-23.x", "range": "23.x" }, + { "name": "release-23.x" }, { "name": "next", "prerelease": true, "channel": "next" } ], "plugins": [