Skip to content

Test gh action #6281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/.backportrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// .backportrc.json
{
// example repo info
"repoOwner": "Ian-Fogelman",
"repoName": "docs",

// `targetBranch` option allows to automatically backport every PR to a specific branch without the need for labels
"targetBranch": ["master", "v7.3", "v7.0", "v6.0", "v5.0"],

// the branches available to backport to
"targetBranch": ["master", "v7.3", "v7.0", "v6.0", "v5.0"],

// In this case, adding the label "backport-to-v7.3" will backport the PR to the "v7.3" branch
"branchLabelMapping": {
"^backport-to-(.+)$": "$1"
}
}
3 changes: 3 additions & 0 deletions source/faq/concurrency.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ FAQ: Concurrency
:depth: 1
:class: twocols

Add Test Content.
Add additional Test Content.

MongoDB allows multiple clients to read and write the same data. To
ensure consistency, MongoDB uses locking and :term:`concurrency control`
to prevent clients from modifying the same data simultaneously. Writes
Expand Down