-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add merge queue configuration (#470)
* meta: add WIP label * fix: remove dependabot configuration * refactor: move renovate config to .github * fix: label renovate PRs as "dependencies" * feat: add mergify merge queue configuration
- Loading branch information
1 parent
454f703
commit 14c9328
Showing
4 changed files
with
33 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
pull_request_rules: | ||
- name: self-assign PRs | ||
conditions: | ||
- -merged | ||
- -closed | ||
- "#assignee=0" | ||
actions: | ||
assign: | ||
add_users: | ||
- "{{ author }}" | ||
- name: automatic merge when not WIP, CI passes, and at least 1 approving review | ||
conditions: | ||
- "#approved-reviews-by>=1" | ||
- check-success=tests 3.10 / ubuntu-latest | ||
- check-success=pre-commit 3.10 / ubuntu-latest | ||
- check-success=docs-build 3.10 / ubuntu-latest | ||
- base=master | ||
- label!=work-in-progress | ||
actions: | ||
queue: | ||
method: squash | ||
name: default | ||
queue_rules: | ||
- name: default | ||
conditions: | ||
- check-success=tests 3.10 / ubuntu-latest | ||
- check-success=pre-commit 3.10 / ubuntu-latest | ||
- check-success=docs-build 3.10 / ubuntu-latest |
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