Skip to content

Commit

Permalink
temp: disable auto-merge only for edx-platform
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmccormick committed Apr 25, 2024
1 parent b14cbaa commit 44febdc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions edx_repo_tools/repo_checks/repo_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import re
import textwrap
from functools import lru_cache
from itertools import chain
from itertools import chainf
from pprint import pformat

import click
Expand Down Expand Up @@ -174,7 +174,10 @@ def __init__(self, api: GhApi, org: str, repo: str):
self.expected_settings = {
"has_issues": True,
"has_wiki": False,
"allow_auto_merge": True,
# The goal is to have allow_auto_merge==True for all repos, but for now we need
# to turn it off for edx-platform due to some unresolved issues with its complex
# system of checks: https://github.com/openedx/axim-engineering/issues/1096
"allow_auto_merge": self.repo_name != "edx-platform",
"delete_branch_on_merge": True,
}

Expand Down

0 comments on commit 44febdc

Please sign in to comment.