Skip to content

Commit 1e31d68

Browse files
authored
Merge branch 'main' into readonly-hint
2 parents f1f1055 + d7e8fa2 commit 1e31d68

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

.github/workflows/check-pr-title.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2828
node -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

130130
NOTE: atlas tools are only available when you set credentials on [configuration](#configuration) section.
131131

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"zod": "^3.24.2"
7979
},
8080
"engines": {
81-
"node": ">=20.0.0"
81+
"node": ">=20.10.0"
8282
}
8383
}

0 commit comments

Comments
 (0)