Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

revert: temp: disable auto-merge only for edx-platform #524

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions edx_repo_tools/repo_checks/repo_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,7 @@ def __init__(self, api: GhApi, org: str, repo: str):
self.expected_settings = {
"has_issues": True,
"has_wiki": False,
# 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",
"allow_auto_merge": True,
"delete_branch_on_merge": True,
}

Expand Down
Loading