Skip to content
Merged
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
35 changes: 35 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
pull_request_rules:
- name: Automatic merge on approval
conditions:
- and:
- "-draft"

# Unit tests
- check-success=3.11 on ubuntu-latest
- check-success=3.12 on ubuntu-latest
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#9 has merged , so we need to update it to

  - check-success=3.11 on ubuntu-latest                                                                                                                                      
  - check-success=3.12 on ubuntu-latest                                                                                                                                      
  - check-success=3.13 on ubuntu-latest                                                                                                                                      
  - check-success=3.14 on ubuntu-latest 

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

- check-success=3.13 on ubuntu-latest
- check-success=3.14 on ubuntu-latest

# Linting
- check-success=Ruff 3.14 on ubuntu-latest

# Coverage
- check-success=Coverage report

# At least 1 reviewer from maintainers
- and:
- "#approved-reviews-by>=1"

actions:
merge:
method: merge

- name: Ping author on conflicts
conditions:
- "conflict"
- "-closed"
actions:
comment:
message: |
This pull request has merge conflicts that must be resolved before it can be merged.
@{{ author }} please rebase your branch.
Loading