ci(053): commitlint — enforce Conventional Commit PR titles (WP-C5)#508
Merged
Conversation
Adds .github/workflows/commitlint.yml which validates the PR title against the Conventional Commits spec on every pull_request event (opened, edited, synchronize). Uses amannn/action-semantic-pull-request@v5.5.3 (SHA-pinned per WP-B5 convention). Allowed types match repo usage: feat, fix, docs, chore, ci, refactor, test, perf, build, style, revert. Scope is optional. requireScope: false. Squash-merge friendly: only the PR title is checked (which becomes the squash commit message), so local commit messages are unaffected.
Deploying mcpproxy-docs with
|
| Latest commit: |
62400a6
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://43f18241.mcpproxy-docs.pages.dev |
| Branch Preview URL: | https://ci-053-commitlint.mcpproxy-docs.pages.dev |
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
📦 Build ArtifactsWorkflow Run: View Run Available Artifacts
How to DownloadOption 1: GitHub Web UI (easiest)
Option 2: GitHub CLI gh run download 26280250914 --repo smart-mcp-proxy/mcpproxy-go
|
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.
What
Adds
.github/workflows/commitlint.ymlthat validates the PR title against the Conventional Commits spec.Why
This repo uses squash-merge, so the PR title becomes the commit message on
main. Enforcing a valid Conventional Commit title at PR time means themainhistory stays clean without requiring contributors to rebase or amend local commits.How
pull_requestevents:opened,edited,synchronizeamannn/action-semantic-pull-requestpinned to commit SHA0723387faaf9b38adef4775cd42cfd5155ed6017(v5.5.3), following the WP-B5 SHA-pinning conventionfeat,fix,docs,chore,ci,refactor,test,perf,build,style,revertrequireScope: false)pull-requests: read,statuses: write