From 2fe0cd1c046ab62cc439b13bb82a117790db8e08 Mon Sep 17 00:00:00 2001 From: Dimitris Klouvas Date: Fri, 6 Oct 2023 17:19:10 +0300 Subject: [PATCH] chore(repo): Use clerk-v4 branch for staging and production releases Until clerk@v5 is ready for release we will be using the clerk-v4 branch for staging and production releases and every commit and changelog entry SHOULD be committed in both clerk-v4 and main branches. The main branch will be used to produce canary releases. --- .github/workflows/release-prod.yml | 2 +- .github/workflows/release-staging.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-prod.yml b/.github/workflows/release-prod.yml index 3f8999972c..466957e599 100644 --- a/.github/workflows/release-prod.yml +++ b/.github/workflows/release-prod.yml @@ -4,7 +4,7 @@ run-name: Production release PR on: push: branches: - - main + - clerk-v4 concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/release-staging.yml b/.github/workflows/release-staging.yml index 395002aba0..4563a674e4 100644 --- a/.github/workflows/release-staging.yml +++ b/.github/workflows/release-staging.yml @@ -4,7 +4,7 @@ run-name: Staging release from ${{ github.ref_name }} on: push: branches: - - main + - clerk-v4 concurrency: group: ${{ github.workflow }}-${{ github.ref }}