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

file_path + version_pattern #260

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def default_configs() -> None:
auto_approve_logins=[],
auto_update=True,
)
Config.create_config("release_manager", enabled=True)
Config.create_config("release_manager", enabled=True, update_in_file=False)
Config.create_config(
"issue_manager",
enabled=True,
Expand Down
3 changes: 3 additions & 0 deletions tests/events/test_check_suite_requested_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,9 @@ def test_release_manager_with_no_pull_request_in_feature_branch(self):
],
)

def test_update_in_file(self):
assert False


class TestCheckSuiteRerequested(TestCheckSuiteRequested): # skipcq: PTC-W0046
event_type = CheckSuiteRerequestedEvent
Loading