Remove explicit '--tags' argument from find-release.py (#13481)

This commit is contained in:
Blue 2025-09-17 18:27:21 +00:00 committed by GitHub
parent 04eb4d4e8f
commit 259ec4e5a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ from git import Repo, Commit, Tag
def main(ref: str, line: int, commit: bool):
repo = Repo('.')
repo.remote('origin').fetch('--tags')
repo.remote('origin').fetch()
tags = list_tags(repo)
if commit: