Revision e00cf1423b160e2edd14fcbed040829ab3ca57f8 authored by Jerome Kelleher on 10 May 2021, 12:59:45 UTC, committed by GitHub on 10 May 2021, 12:59:45 UTC
2 parent s 455b446 + 35cf9ac
Raw File
.mergify.yml
pull_request_rules:
  - name: Automatic rebase, CI and merge
    conditions:
      - "-merged"
      - "#approved-reviews-by>=1"
      - base=main
      - label=AUTOMERGE-REQUESTED
      - status-success=Docs
      - status-success=Lint
      - status-success=Python (3.7, macos-latest)
      - status-success=Python (3.8, macos-latest)
      - status-success=Python (3.9, macos-latest)
      - status-success=Python (3.7, ubuntu-latest)
      - status-success=Python (3.8, ubuntu-latest)
      - status-success=Python (3.9, ubuntu-latest)
      - status-success=Python (3.7, windows-latest)
      - status-success=Python (3.8, windows-latest)
      - status-success=Python (3.9, windows-latest)
      - "status-success=ci/circleci: build"
      #- status-success=codecov/patch
      #- status-success=codecov/project/c-tests
      #- status-success=codecov/project/python-c-tests
      #- status-success=codecov/project/python-tests
    actions:
      merge:
        strict: smart
        strict_method: rebase
        method: merge

  - name: Remove label after merge
    conditions:
      - merged
      - label=AUTOMERGE-REQUESTED
    actions:
      label:
        remove:
          - AUTOMERGE-REQUESTED
back to top