Skip to content

Commit

Permalink
add mergify support
Browse files Browse the repository at this point in the history
Problem: Mergifyio is a nice bot to auto rebase and merge PRs that
are approved and have passed all tests.

Add initial mergify support.  Initial reviewers that can approve
pull requests are on team @chaos/diod.  PRs must be tagged
with the merge-when-passing label.
  • Loading branch information
garlick committed Dec 29, 2024
1 parent b4b5e8e commit f7dc0e8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
queue_rules:
- name: default
queue_conditions:
- base=master
- label="merge-when-passing"
- label!="work-in-progress"
- -title~=^\[*[Ww][Ii][Pp]
- "approved-reviews-by=@chaos/diod-admins"
- "#approved-reviews-by>0"
- "#changes-requested-reviews-by=0"
merge_conditions:
- base=master
- label="merge-when-passing"
- label!="work-in-progress"
- "approved-reviews-by=@chaos/diod-admins"
- "#approved-reviews-by>0"
- "#changes-requested-reviews-by=0"
- -title~=^\[*[Ww][Ii][Pp]
update_method: rebase
merge_method: merge

pull_request_rules:
- name: rebase and merge when passing all checks
conditions: []
actions:
queue:

0 comments on commit f7dc0e8

Please sign in to comment.