Skip to content

Commit

Permalink
temp: disable auto-merge only for edx-platform (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmccormick committed Apr 26, 2024
1 parent 4c8942d commit 64e0716
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion edx_repo_tools/repo_checks/repo_checks.py
Original file line number Diff line number Diff line change
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 64e0716

Please sign in to comment.