From d70049b7bd8fc1db4f73c64a0544642ff51cf8fc Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 18 Aug 2025 13:10:16 -0400 Subject: [PATCH] Update default branch references from master to main MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR updates all references to the default branch from "master" to "main" to follow modern Git conventions and GitHub's default settings. Changes: - Update GitHub Actions workflows to trigger on main branch - Update Documenter.jl configuration to use main as devbranch - Update README badge URLs to reference main branch - Update documentation edit links to point to main branch 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/Docs.yml | 2 +- .github/workflows/Downgrade.yml | 4 ++-- .github/workflows/FormatCheck.yml | 4 ++-- .github/workflows/Tests.yml | 4 ++-- README.md | 2 +- docs/make.jl | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/Docs.yml b/.github/workflows/Docs.yml index 85be6a7..7cd7567 100644 --- a/.github/workflows/Docs.yml +++ b/.github/workflows/Docs.yml @@ -3,7 +3,7 @@ name: Documentation on: push: branches: - - master + - main tags: '*' pull_request: diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 293819b..b1e5fba 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -2,12 +2,12 @@ name: Downgrade on: pull_request: branches: - - master + - main paths-ignore: - 'docs/**' push: branches: - - master + - main paths-ignore: - 'docs/**' jobs: diff --git a/.github/workflows/FormatCheck.yml b/.github/workflows/FormatCheck.yml index bc05edc..8d72cf1 100644 --- a/.github/workflows/FormatCheck.yml +++ b/.github/workflows/FormatCheck.yml @@ -3,10 +3,10 @@ name: format-check on: push: branches: - - master + - main pull_request: branches: - - master + - main concurrency: # Skip intermediate builds: always. diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 1bf1b24..2bdd065 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -3,12 +3,12 @@ name: "Tests" on: pull_request: branches: - - master + - main paths-ignore: - 'docs/**' push: branches: - - master + - main paths-ignore: - 'docs/**' diff --git a/README.md b/README.md index ba2f3e5..639a42c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://docs.sciml.ai/SparseBandedMatrices/dev/) [![CI](https://github.com/SciML/SparseBandedMatrices.jl/actions/workflows/Tests.yml/badge.svg)](https://github.com/SciML/SparseBandedMatrices.jl/actions/workflows/Tests.yml) -[![codecov](https://codecov.io/gh/SciML/SparseBandedMatrices.jl/branch/master/graph/badge.svg?)](https://codecov.io/gh/SciML/SparseBandedMatrices.jl) +[![codecov](https://codecov.io/gh/SciML/SparseBandedMatrices.jl/branch/main/graph/badge.svg?)](https://codecov.io/gh/SciML/SparseBandedMatrices.jl) [![Package Downloads](https://shields.io/endpoint?url=https://pkgs.genieframework.com/api/v1/badge/SparseBandedMatrices)](https://pkgs.genieframework.com?packages=SparseBandedMatrices) [![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl) diff --git a/docs/make.jl b/docs/make.jl index 9c8e82c..0a3db8b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -12,7 +12,7 @@ makedocs(; format = Documenter.HTML(; prettyurls = get(ENV, "CI", "false") == "true", canonical = "https://docs.sciml.ai/SparseBandedMatrices/stable/", - edit_link = "master", + edit_link = "main", assets = String[], ), pages = [ @@ -22,5 +22,5 @@ makedocs(; deploydocs(; repo = "github.com/SciML/SparseBandedMatrices.jl", - devbranch = "master", + devbranch = "main", ) \ No newline at end of file