From fb8ceacc702d6f3bbb82e21e9d9a710bcdbcc256 Mon Sep 17 00:00:00 2001 From: Michel Schanen Date: Thu, 30 Jul 2026 10:42:52 -0500 Subject: [PATCH] Point branch references at main instead of master The default branch was renamed master -> main on 2026-05-16, but the in-repo references to it were never updated. Consequences: - The Buildkite badge requested ?branch=master, so it rendered the last build that branch ever saw -- a stale failure -- while main was green. Same for the Codecov badge. - The CI and Documentation workflows trigger on push to master, so neither has run on a push to the default branch since the rename. Only pull_request and scheduled runs were still firing. - Documenter deployed dev docs from a devbranch that no longer exists. --- .github/workflows/ci.yml | 2 +- .github/workflows/docs.yml | 2 +- README.md | 4 ++-- docs/make.jl | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 164c2d9d..98c7e488 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - master + - main tags: '*' pull_request: types: [opened, synchronize, reopened] diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4f5a766f..832d8318 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: types: [opened, synchronize, reopened] diff --git a/README.md b/README.md index 8485889f..e84e2a83 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ [doi-img]: https://zenodo.org/badge/252466420.svg [doi-url]: https://zenodo.org/badge/latestdoi/252466420 -[buildkite-img]: https://badge.buildkite.com/00fff01fd4d6cdd905e61e2ce7ed0f7203ba227df9b575426c.svg?branch=master +[buildkite-img]: https://badge.buildkite.com/00fff01fd4d6cdd905e61e2ce7ed0f7203ba227df9b575426c.svg?branch=main [buildkite-url]: https://buildkite.com/julialang/oneapi-dot-jl -[codecov-img]: https://codecov.io/gh/JuliaGPU/oneAPI.jl/branch/master/graph/badge.svg +[codecov-img]: https://codecov.io/gh/JuliaGPU/oneAPI.jl/branch/main/graph/badge.svg [codecov-url]: https://codecov.io/gh/JuliaGPU/oneAPI.jl [docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg diff --git a/docs/make.jl b/docs/make.jl index 2c236752..b5529648 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -47,7 +47,7 @@ makedocs( deploydocs( repo = "github.com/JuliaGPU/oneAPI.jl.git", target = "build", - devbranch = "master", + devbranch = "main", devurl = "dev", push_preview = true, )