@samitouri / QOSAMI-WSL / commits / 259ec4e5

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

Blue committed Sep 17, 2025 at 18:27 UTC 259ec4e5a9ed75d5ba587feedd91253523f678c7
1 file changed +1 -1
tools/devops/find-release.py
+1 -1
@@ -17,7 +17,7 @@ from git import Repo, Commit, Tag
17 def main(ref: str, line: int, commit: bool):
18 repo = Repo('.')
19
20 - repo.remote('origin').fetch('--tags')
20 + repo.remote('origin').fetch()
21 tags = list_tags(repo)
22
23 if commit: