Skip to content

Commit 49aacb0

Browse files
authored
Merge pull request #454 from meilisearch/remove-bors
Remove bors and use GitHub merge queue
2 parents a3bb5f3 + 5fb0c4b commit 49aacb0

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

.github/release-draft-template.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,5 @@ template: |
2929
no-changes-template: 'Changes are coming soon 😎'
3030
sort-direction: 'ascending'
3131
replacers:
32-
- search: '/(?:and )?@bors(?:\[bot\])?,?/g'
33-
replace: ''
3432
- search: '/(?:and )?@meili-bot,?/g'
3533
replace: ''

.github/workflows/tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ name: Tests
33
on:
44
pull_request:
55
push:
6-
# trying and staging branches are for BORS config
76
branches:
8-
- trying
9-
- staging
107
- main
8+
merge_group:
119

1210
env:
1311
MEILISEARCH_URL: http://localhost:7700

CONTRIBUTING.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,19 +141,13 @@ Some notes on GitHub PRs:
141141
142142
- [Convert your PR as a draft](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request) if your changes are a work in progress: no one will review it until you pass your PR as ready for review.<br>
143143
The draft PR can be very useful if you want to show that you are working on something and make your work visible.
144-
- The branch related to the PR must be **up-to-date with `main`** before merging. Fortunately, this project [integrates a bot](https://github.com/meilisearch/integration-guides/blob/main/resources/bors.md) to automatically enforce this requirement without the PR author having to do it manually.
145144
- All PRs must be reviewed and approved by at least one maintainer.
146145
- The PR title should be accurate and descriptive of the changes. The title of the PR will be indeed automatically added to the next [release changelogs](https://github.com/meilisearch/meilisearch-dart/releases/).
147146
148147
## Release Process (for the internal team only)
149148
150149
Meilisearch tools follow the [Semantic Versioning Convention](https://semver.org/).
151150
152-
### Automation to Rebase and Merge the PRs <!-- omit in TOC -->
153-
154-
This project integrates a bot that helps us manage pull requests merging.<br>
155-
_[Read more about this](https://github.com/meilisearch/integration-guides/blob/main/resources/bors.md)._
156-
157151
### Automated Changelogs <!-- omit in TOC -->
158152
159153
This project integrates a tool to create automated changelogs.<br>

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<a href="https://pub.dev/packages/meilisearch"><img src="https://img.shields.io/pub/v/meilisearch" alt="Pub Version"></a>
1919
<a href="https://github.com/meilisearch/meilisearch-dart/actions"><img src="https://github.com/meilisearch/meilisearch-dart/workflows/Tests/badge.svg" alt="GitHub Workflow Status"></a>
2020
<a href="https://github.com/meilisearch/meilisearch-dart/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-informational" alt="License"></a>
21-
<a href="https://ms-bors.herokuapp.com/repositories/66"><img src="https://bors.tech/images/badge_small.svg" alt="Bors enabled"></a>
2221
<a href="https://codecov.io/gh/meilisearch/meilisearch-dart"><img src="https://codecov.io/gh/meilisearch/meilisearch-dart/branch/main/graph/badge.svg" alt="Code Coverage"></a>
2322
</p>
2423

@@ -200,10 +199,10 @@ The `MeiliDocumentContainer<T>` class contains meilisearch-specific fields (e.g.
200199
We define the `mapToContainer()` extension to help you quickly opt-in to this class, example:
201200

202201
```dart
203-
final res = await index
204-
.search("hello world")
202+
final res = await index
203+
.search("hello world")
205204
.asSearchResult() //or .asPaginatedResult() if using page parameters
206-
.mapToContainer();
205+
.mapToContainer();
207206
```
208207

209208
## 🤖 Compatibility with Meilisearch

0 commit comments

Comments
 (0)