Run CI on pushes to main, not only pull requests#44
Merged
Conversation
pull_request runs test the PR head, not the merge commit that actually lands on main — and main is what the community-marketplace catalog pins and auto-bumps to. Add a push trigger for main and rename the workflow to plain "CI" accordingly. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
pull_requestruns test the PR head, never the merge commit that lands onmain— andmainis exactly what the community-marketplace catalog pins (and auto-bumps to on every push). This adds apush: branches: [main]trigger so the published branch is verified directly, and renames the workflow to plain "CI" since it's no longer PR-only.Job names (
CI (Node X, os)) are unchanged, so branch-protection check references stay valid. Same 4-leg matrix.Bonus: merging this PR will itself trigger the first main run — which doubles as the CI-on-main smoke test before you flip the repo public.
🤖 Generated with Claude Code