File tree Expand file tree Collapse file tree 2 files changed +28
-11
lines changed Expand file tree Collapse file tree 2 files changed +28
-11
lines changed Original file line number Diff line number Diff line change 1+ pull_request_rules :
2+ - name : Automatic merge
3+ description : Conditions required for automatic merging of a PR
4+ conditions :
5+
6+ # let Mergify know that the PR can be megrged (added manually)
7+ - label = 🤖-automerge
8+ # block Mergify from merging the PR (added manually)
9+ - label != 🤖-do-not-merge
10+
11+ # list of CI checks that need to pass in order for the PR to be merged
12+ - check-success=unit-tests
13+ - check-success=integration-tests
14+ - check-success=system-tests
15+
16+ # Check for required reviews
17+ - " #approved-reviews-by>=2" # Requires 2 approving reviews
18+ - " #changes-requested-reviews-by=0" # No changes requested
19+ - " #review-threads-unresolved=0" # All review threads resolved
20+
21+ # Optional but recommended checks
22+ - base=naster
23+ - -draft # PR is not in draft state
24+ - -conflict # No merge conflicts
25+ actions :
26+ merge :
27+
28+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments