forked from FerretDB/FerretDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add tests for `sort` and `find` parameters type (FerretDB#544) Refs #164. * Prepare v0.2.0 release * Bump go.mongodb.org/mongo-driver from 1.9.0 to 1.9.1 in /integration (FerretDB#555) Bumps [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/mongodb/mongo-go-driver/releases) - [Commits](mongodb/mongo-go-driver@v1.9.0...v1.9.1) --- updated-dependencies: - dependency-name: go.mongodb.org/mongo-driver dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add missing `//nolint` (FerretDB#556) * Set the handler to use via a command-line flag and remove debug handlers from interface (FerretDB#534) Closes FerretDB#455. * Add tests for `RemoveByPath` (FerretDB#549) Closes FerretDB#479. * Add `altMessage` to `AssertEqualError` (FerretDB#550) * Add documentation for values comparision (FerretDB#559) Refs FerretDB#457. * Add `debug` and `panic` msg handlers to `Command` map (FerretDB#561) Refs FerretDB#455. * Add `RemoveByPath` for `Array` and `CompositeTypeInterface` (FerretDB#560) Closes FerretDB#479. * Bump docker/login-action from 1 to 2 (FerretDB#565) Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 2. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v2) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add conform CI workflow, improve docs (FerretDB#566) Co-authored-by: Dmitry <dmitry.eremenko@ferretdb.io> Co-authored-by: Alexey Palazhchenko <alexey.palazhchenko@ferretdb.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
Showing
46 changed files
with
1,628 additions
and
1,102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Conform PR | ||
on: | ||
pull_request: | ||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | ||
# List all types to make it easier to enable new ones when they are needed. | ||
types: | ||
# - assigned | ||
# - unassigned | ||
# - labeled | ||
# - unlabeled | ||
- opened | ||
- edited | ||
# - closed | ||
- reopened | ||
- synchronize | ||
# - converted_to_draft | ||
# - ready_for_review | ||
# - locked | ||
# - unlocked | ||
# - review_requested | ||
# - review_request_removed | ||
# - auto_merge_enabled | ||
# - auto_merge_disabled | ||
|
||
# Stop pending and in-progress jobs of this workflow. | ||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
conform-pr: | ||
name: Conform PR | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Conform PR | ||
uses: FerretDB/github-actions/conform-pr@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.