From 65c42b893c9d314aa5f53aa188d0b9fede9d0ac9 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Tue, 3 Sep 2024 16:21:12 +0200 Subject: [PATCH] chore: update for 6.x branch --- .github/workflows/ci.yml | 2 +- .github/workflows/publish-npm-latest-from-pre.yml | 2 +- .github/workflows/publish-npm-latest.yml | 2 +- .github/workflows/publish-npm-nightly.yml | 2 +- lerna.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 537629b08..89c51b592 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: branches: - - main + - 6.x pull_request: branches: - '**' diff --git a/.github/workflows/publish-npm-latest-from-pre.yml b/.github/workflows/publish-npm-latest-from-pre.yml index c0e19d912..f391cd4e4 100644 --- a/.github/workflows/publish-npm-latest-from-pre.yml +++ b/.github/workflows/publish-npm-latest-from-pre.yml @@ -15,7 +15,7 @@ permissions: jobs: deploy-npm-latest-from-pre: - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/6.x' runs-on: macos-14 timeout-minutes: 30 steps: diff --git a/.github/workflows/publish-npm-latest.yml b/.github/workflows/publish-npm-latest.yml index 2a4dac503..5ea7a4ba9 100644 --- a/.github/workflows/publish-npm-latest.yml +++ b/.github/workflows/publish-npm-latest.yml @@ -15,7 +15,7 @@ permissions: jobs: deploy-npm-latest: - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/6.x' runs-on: macos-14 timeout-minutes: 30 steps: diff --git a/.github/workflows/publish-npm-nightly.yml b/.github/workflows/publish-npm-nightly.yml index 30a89367e..b68d82d2d 100644 --- a/.github/workflows/publish-npm-nightly.yml +++ b/.github/workflows/publish-npm-nightly.yml @@ -10,7 +10,7 @@ permissions: jobs: deploy-npm-nightly: - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/6.x' runs-on: macos-14 timeout-minutes: 30 steps: diff --git a/lerna.json b/lerna.json index 1b72b24d4..3e7a34482 100644 --- a/lerna.json +++ b/lerna.json @@ -5,7 +5,7 @@ "npmClientArgs": ["--no-package-lock"] }, "version": { - "allowBranch": "main", + "allowBranch": "6.x", "conventionalCommits": true, "createRelease": "github", "message": "chore(release): publish [skip ci]",