Skip to content

Commit

Permalink
Add mergify config
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jun 12, 2021
1 parent eae4321 commit 3b67dee
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .mergify.yml
@@ -0,0 +1,49 @@
pull_request_rules:
- name: delete head branch after merge
conditions: []
actions:
delete_head_branch: {}
- name: automatic merge for scala-steward pull requests affecting build.sbt
conditions:
- author=scala-steward
- check-success=ci
- "#files=1"
- files=build.sbt
actions:
merge:
method: merge
- name: automatic merge for scala-steward pull requests affecting project plugins.sbt
conditions:
- author=scala-steward
- check-success=ci
- "#files=1"
- files=project/plugins.sbt
actions:
merge:
method: merge
- name: semi-automatic merge for scala-steward pull requests
conditions:
- author=scala-steward
- check-success=ci
- "#approved-reviews-by>=1"
actions:
merge:
method: merge
- name: automatic merge for scala-steward pull requests affecting project build.properties
conditions:
- author=scala-steward
- check-success=ci
- "#files=1"
- files=project/build.properties
actions:
merge:
method: merge
- name: automatic merge for scala-steward pull requests affecting .scalafmt.conf
conditions:
- author=scala-steward
- check-success=ci
- "#files=1"
- files=.scalafmt.conf
actions:
merge:
method: merge

0 comments on commit 3b67dee

Please sign in to comment.