File tree Expand file tree Collapse file tree 4 files changed +33
-4
lines changed Expand file tree Collapse file tree 4 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 1+ name : " Check PR Title"
2+ on :
3+ pull_request :
4+ types :
5+ [
6+ opened,
7+ synchronize,
8+ reopened,
9+ ready_for_review,
10+ labeled,
11+ unlabeled,
12+ converted_to_draft,
13+ edited,
14+ ]
15+
16+ permissions :
17+ pull-requests : read # to read PR title and labels
18+
19+ jobs :
20+ check-pr-title :
21+ name : Check PR Title
22+ runs-on : ubuntu-latest
23+ steps :
24+ - name : Enforce conventional commit style
25+ uses : realm/ci-actions/title-checker@d6cc8f067474759d38e6d24e272027b4c88bc0a9
26+ with :
27+ regex : ' ^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|ops){1}(\([\w\-\.]+\))?(!)?: .*'
28+ error-hint : ' Invalid PR title. Make sure it follows the conventional commit specification (i.e. "<type>(<optional scope>): <description>") or add the no-title-validation label'
29+ ignore-labels : " no-title-validation"
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ This project implements a Model Context Protocol (MCP) server for MongoDB and Mo
5555 npm run inspect
5656 ```
5757
58- 4 . Commit your changes with a descriptive commit message
58+ 4 . Commit your changes using [ conventional commits ] ( https://www.conventionalcommits.org/en/v1.0.0/ ) format.
5959
6060## Adding tests to the MCP Server
6161
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ A Model Context Protocol server for interacting with MongoDB Databases and Mongo
2222
2323## Prerequisites
2424
25- - Node.js (v20 or later)
25+ - Node.js (v20.10.0 or later)
2626
2727``` shell
2828node -v
@@ -125,7 +125,7 @@ You can use environment variables in the config file or set them and run the ser
125125- ` atlas-inspect-access-list ` - Inspect IP/CIDR ranges with access to MongoDB Atlas clusters
126126- ` atlas-create-access-list ` - Configure IP/CIDR access list for MongoDB Atlas clusters
127127- ` atlas-list-db-users ` - List MongoDB Atlas database users
128- - ` atlas-create-db-user ` - List MongoDB Atlas database users
128+ - ` atlas-create-db-user ` - Creates a MongoDB Atlas database user
129129
130130NOTE: atlas tools are only available when you set credentials on [ configuration] ( #configuration ) section.
131131
Original file line number Diff line number Diff line change 7878 "zod" : " ^3.24.2"
7979 },
8080 "engines" : {
81- "node" : " >=20.0 .0"
81+ "node" : " >=20.10 .0"
8282 }
8383}
You can’t perform that action at this time.
0 commit comments