Point CI at master after the default-branch rename - #3
Merged
Conversation
The default branch is now master, but the workflow's push trigger still named main — a branch that no longer exists. Pushes to the default branch have been running no checks at all since the rename; only pull_request events still fired. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CiRDTC3E7HGD6Cbq8QeFXM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Pushes to the default branch have not been running CI since it was renamed from
maintomaster. The workflow's push trigger still namesmain, a branch that no longer exists, so it matches nothing. Pull-request runs were unaffected, which is why this stayed invisible — the gate looks healthy on every PR while direct pushes and post-merge runs are silently unchecked.Solution
Point the push trigger at
master.No other file in the repo referenced the old branch name — I grepped the tree on
masterbefore changing this, and.github/workflows/ci.yml:5was the only hit.No visual change.
🤖 Generated with Claude Code