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
55
55
npm run inspect
56
56
```
57
57
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.
59
59
60
60
## Adding tests to the MCP Server
61
61
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
22
22
23
23
## Prerequisites
24
24
25
- - Node.js (v20 or later)
25
+ - Node.js (v20.10.0 or later)
26
26
27
27
``` shell
28
28
node -v
@@ -125,7 +125,7 @@ You can use environment variables in the config file or set them and run the ser
125
125
- ` atlas-inspect-access-list ` - Inspect IP/CIDR ranges with access to MongoDB Atlas clusters
126
126
- ` atlas-create-access-list ` - Configure IP/CIDR access list for MongoDB Atlas clusters
127
127
- ` 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
129
129
130
130
NOTE: atlas tools are only available when you set credentials on [ configuration] ( #configuration ) section.
131
131
Original file line number Diff line number Diff line change 78
78
"zod" : " ^3.24.2"
79
79
},
80
80
"engines" : {
81
- "node" : " >=20.0 .0"
81
+ "node" : " >=20.10 .0"
82
82
}
83
83
}
You can’t perform that action at this time.
0 commit comments