Skip to content

Commit fcbe380

Browse files
rustagirnorareidyjordan-smith721comandeo-mongomayaraman19
authored
Standardized (#98)
* DOCSP-42732: qs * fix * wip * remove action * NR suggestion * DOCSP-42732: qs download * wip * adapt for sinatra * vale fix * snooty landing page * MW PR fixes 1 * DOCSP-42733: atlas prep qs * MW PR fixes 1 * DOCSP-42735: configure cxn * small fix - vale * JS PR fixes 1 * DOCSP-44008: read/write sinatra quickstart * fixes * NR PR fixes 1 * DOCSP-43961: rails qs * vale * ordering * small fix * MW PR fixes 1 * small fixes * MW PR fixes 2 * DOCSP-44647: add to existing app * fix vale action * vale fixes * depth * MW PR fixes 1 * fixes * DOCSP-42745: interact with data drawer * tags * fix vale action * remove extra word Co-authored-by: Nora Reidy <[email protected]> * DOCSP-42753: specify query part 1 * vale * title * code edits * MW PR fixes 2 * DOCSP-44849: modify results * vale * JS PR fixes 1 * fix * fix * list fixes * MW PR fixes 1 * DOCSP-44954: scoping * add landing page * link * vale * highlighting * DOCSP-44821: specify a query pt 2 * MR PR fixes 1 * wip * wip * wip * small fixes * DOCSP-42767 Aggregation (#57) * DOCSP-42774: transactions * vale * link text * MW PR fixes 1 * MR PR fixes 1 * DOCSP-45306: model data drawer * DOCSP-45330: inheritance (WIP) * MR PR fixes 2 * try using roles * wip * vale * add label * fixes * fix * small fixes - MW * DOCSP-45358: documents * fix * wip * wip * DR tech review 1 * page fmt * page fmt * SA PR fixes 1 * MR PR fixes 1 * DR small fix Co-authored-by: Dmitry Rybakov <[email protected]> * DOCSP-45360: nested attributes (#71) * DOCSP-45360: nested attributes * vale + fixes * fixes * NR PR fixes 1 * DOCSP-45362: text search (#72) * DOCSP-45362: text search * wip * vale * MM PR fixes 1 * DOCSP-45436 Field Behaviors page (#68) * DOCSP-45363: validation (#73) * DOCSP-45363: validation * keywords * wip * SA PR fixes 1 * DOCSP-44794 Field Types (#69) * DOCSP-45357 Sharding Configuration (#76) * DOCSP-42762: Indexes (#74) * DOCSP-45367 Associations pt. 1 (#79) * DOCSP-45368: Persistence Configuration (#77) * DOCSP-45361: callbacks (#75) * DOCSP-45361: callbacks * wip * wip * wip * NR PR fixes 1 * DOCSP-45364: CRUD pt 1 (#81) * checkpoint * checkpoint 2 * woohoo first pass * indent * Edits * updates * vale chekcs * RR PR fixes 1 * fix code file * code fixes * RM PR fixes 1 --------- Co-authored-by: rustagir <[email protected]> * DOCSP-45110: queries subsections (#80) * DOCSP-45110: queries misc sections * wip: * vale * MR PR fixes 1 * GM PR fixes 1 * DOCSP-46072 Associations part 2 (#82) * DOCSP-46394: CRUD remaining sections (#83) * DOCSP-46394: CRUD remaining sections * vale fixes * JS PR fixes 1 * DOCSP-46213: bump to rails 8 and remove old tuts (#84) * DOCSP-45356: i&h + code doc (#86) * DOCSP-45356: i&h + code doc * remove contributing * vale fixes * link fix * vale fixes + RM comment * DOCSP-42770: release notes/whats new (#87) * DOCSP-42770: release notes/whats new * fixes * fixes * DOCSP-42773: api links (#88) * DOCSP-42773: api links * fix * link fixes * DOCSP-42772: compatibility (#90) * DOCSP-42772: compatibility * small fix * small fix * SA PR fixes 1 * delete files for old build system * column width adjustment * DOCSP-45366 Encryption (#89) * DOCSP-42741: config pages (#91) * DOCSP-42741: config * wip * wip * some vale fixes * RM PR fixes 1 * small fix * DOCSP-46555: rails integration (#92) * wip * DOCSP-46555: rails integration * RM PR fixes 1 * DOCSP-45359 External Resources (#94) * add additional resources page * edits * feedback * DOCSP-42743 Collection config (#95) * DOCSP-42730: landing page (#96) * DOCSP-42730: landing page * MW PR fixes 1 * small fix * small fix * small fix * DOCSP-46121: cleanup (#97) * cleanup * copy compat action * redirects * MW PR fixes 1 * add index section * change vs in redirects --------- Co-authored-by: Nora Reidy <[email protected]> Co-authored-by: Jordan Smith <[email protected]> Co-authored-by: Dmitry Rybakov <[email protected]> Co-authored-by: Maya Raman <[email protected]>
1 parent ff676e5 commit fcbe380

File tree

161 files changed

+14539
-14548
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+14539
-14548
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/check-autobuilder.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: Copy Files to docs-shared
2+
3+
on:
4+
workflow_dispatch: {} # use to manually trigger workflow
5+
push:
6+
branches:
7+
- "master"
8+
paths:
9+
- "source/includes/mongodb-compatibility-table-mongoid.rst"
10+
- "source/includes/language-compatibility-table-mongoid.rst"
11+
- "source/includes/rails-compatibility-table-mongoid.rst"
12+
- "source/includes/ror-compatibility-table-mongoid.rst"
13+
- "source/includes/ruby-driver-compatibility-table-mongoid.rst"
14+
15+
jobs:
16+
copy-file:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v3
21+
22+
- name: Copy mongodb-compat table
23+
uses: dmnemec/copy_file_to_another_repo_action@main
24+
env:
25+
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
26+
with:
27+
source_file: "source/includes/mongodb-compatibility-table-mongoid.rst"
28+
destination_repo: "10gen/docs-shared"
29+
destination_folder: "dbx"
30+
user_email: "[email protected]"
31+
user_name: "docs-builder-bot"
32+
commit_message: "Auto-import from docs-mongoid"
33+
34+
- name: Copy language-compat table
35+
uses: dmnemec/copy_file_to_another_repo_action@main
36+
env:
37+
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
38+
with:
39+
source_file: "source/includes/language-compatibility-table-mongoid.rst"
40+
destination_repo: "10gen/docs-shared"
41+
destination_folder: "dbx"
42+
user_email: "[email protected]"
43+
user_name: "docs-builder-bot"
44+
commit_message: "Auto-import from docs-mongoid"
45+
46+
- name: Copy ruby-on-rails-compat table
47+
uses: dmnemec/copy_file_to_another_repo_action@main
48+
env:
49+
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
50+
with:
51+
source_file: "source/includes/rails-compatibility-table-mongoid.rst"
52+
destination_repo: "10gen/docs-shared"
53+
destination_folder: "dbx"
54+
user_email: "[email protected]"
55+
user_name: "docs-builder-bot"
56+
commit_message: "Auto-import from docs-mongoid"
57+
58+
- name: Copy rails-feature-compat table
59+
uses: dmnemec/copy_file_to_another_repo_action@main
60+
env:
61+
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
62+
with:
63+
source_file: "source/includes/ror-compatibility-table-mongoid.rst"
64+
destination_repo: "10gen/docs-shared"
65+
destination_folder: "dbx"
66+
user_email: "[email protected]"
67+
user_name: "docs-builder-bot"
68+
commit_message: "Auto-import from docs-mongoid"
69+
70+
- name: Copy ruby-driver-compat table
71+
uses: dmnemec/copy_file_to_another_repo_action@main
72+
env:
73+
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
74+
with:
75+
source_file: "source/includes/ruby-driver-compatibility-table-mongoid.rst"
76+
destination_repo: "10gen/docs-shared"
77+
destination_folder: "dbx"
78+
user_email: "[email protected]"
79+
user_name: "docs-builder-bot"
80+
commit_message: "Auto-import from docs-mongoid"

.github/workflows/vale-tdbx.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,30 @@ jobs:
1212
- name: checkout
1313
uses: actions/checkout@v4
1414

15+
- name: Install docutils
16+
run: sudo apt-get install -y docutils
17+
1518
- id: files
1619
uses: masesgroup/retrieve-changed-files@v2
1720
with:
18-
format: 'csv'
21+
format: "csv"
1922

2023
- name: checkout-latest-rules
2124
uses: actions/checkout@v4
2225
with:
2326
repository: mongodb/mongodb-vale-action
24-
path: './tdbx-vale-rules'
27+
path: "./tdbx-vale-rules"
2528
token: ${{secrets.GITHUB_TOKEN}}
2629

2730
- name: move-files-for-vale-action
2831
run: |
29-
cp tdbx-vale-rules/.vale.ini .vale.ini
30-
mkdir -p .github/styles/
31-
cp -rf tdbx-vale-rules/.github/styles/ .github/
32+
cp tdbx-vale-rules/.vale.ini .vale.ini
33+
mkdir -p .github/styles/
34+
cp -rf tdbx-vale-rules/.github/styles/ .github/
3235
- name: run-vale
3336
uses: errata-ai/vale-action@reviewdog
3437
with:
3538
reporter: github-pr-check
3639
files: ${{steps.files.outputs.added_modified}}
3740
fail_on_error: true
38-
token: ${{secrets.GITHUB_TOKEN}}
41+
token: ${{secrets.GITHUB_TOKEN}}

.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

Dockerfile

Lines changed: 0 additions & 27 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 112 deletions
This file was deleted.

0 commit comments

Comments
 (0)