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

fix: Update PR title check during upgrade PR creation #546

Merged
merged 2 commits into from
Aug 16, 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
4 changes: 2 additions & 2 deletions edx_repo_tools/pull_request_creator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ def create_pull_request(self, repository, title, body, base, head, user_reviewer
"https://github.com/{}/pull/{}".format(repository.full_name, pull_request.number)
) from e

# it's a discovery work that's why only enabled for repo-health-data.
if pull_request.title == 'Python Requirements Update':
# Do this in upgrade PRs only
if pull_request.title == 'chore: Upgrade Python requirements':
self.verify_upgrade_packages(pull_request)

return pull_request
Expand Down
Loading