From 00121a00dd55f0a6c01d0058814d094717ff4d43 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 30 Mar 2026 09:16:38 -0400 Subject: [PATCH] chore: update branch references for main/legacy rename (ENG-2105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update CI triggers, CLAUDE.md, CONTRIBUTING.md, and README.md to reflect the branch rename: develop → main, main → legacy. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/rust.yml | 2 +- CLAUDE.md | 4 ++-- CONTRIBUTING.md | 4 ++-- README.md | 4 ++-- crates/host-reth/Cargo.toml | 1 + crates/node-tests/Cargo.toml | 1 + 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4d148eed..ba92f5fd 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -3,7 +3,7 @@ name: CI # Continuous Integration on: workflow_dispatch: push: - branches: [main, develop] + branches: [main, legacy] pull_request: # simplest example of using the rust-base action diff --git a/CLAUDE.md b/CLAUDE.md index 53eade31..2951863a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -2,8 +2,8 @@ ## Branches -The `main` branch is in maintenance and bug-fix mode. The `develop` branch -contains current work. +The `main` branch contains current work. The `legacy` branch is under +long-term maintenance and may receive active work. ## Commands diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 79425df8..7b3ed2e1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,8 +24,8 @@ these standards. It helps us get your PR in faster, and with less work from you. ### Branching -PRs should target the `develop` branch. The `main` branch is reserved for -stable releases and receives merges from `develop` at release boundaries. +PRs should target the `main` branch by default. The `legacy` branch is under +long-term maintenance and accepts maintenance and backport PRs. ## Development Basics diff --git a/README.md b/README.md index 66d89c18..3e3f212b 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ [![CI](https://github.com/init4tech/node-components/actions/workflows/rust.yml/badge.svg)](https://github.com/init4tech/node-components/actions/workflows/rust.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) -> **Note:** The `main` branch is in maintenance and bug-fix mode. The -> `develop` branch contains current work. +> **Note:** The `legacy` branch is under long-term maintenance and may receive +> active work. The `main` branch contains current work. A collection of components for building the Signet node. These components implement core node functionality, but are potentially independently useful. diff --git a/crates/host-reth/Cargo.toml b/crates/host-reth/Cargo.toml index b9efe47d..977c7106 100644 --- a/crates/host-reth/Cargo.toml +++ b/crates/host-reth/Cargo.toml @@ -8,6 +8,7 @@ authors.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true +publish = false [dependencies] signet-node-types.workspace = true diff --git a/crates/node-tests/Cargo.toml b/crates/node-tests/Cargo.toml index 2cf2f711..94fa5f88 100644 --- a/crates/node-tests/Cargo.toml +++ b/crates/node-tests/Cargo.toml @@ -7,6 +7,7 @@ authors.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true +publish = false [dependencies] signet-blobber = { workspace = true, features = ["test-utils"] }