Skip to content

Commit e60d169

Browse files
authored
chore(librarian): fix issue_tracker in .repo-metadata.json (#14602)
This PR fixes a typo when getting the `new_issue_uri`. The `new_issue_uri` exists under the publishing section, not the root `service_config.yaml` file
1 parent 55bb427 commit e60d169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.generator/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def _create_repo_metadata_from_service_config(
424424
api_shortname = service_config.get("name", "").split(".")[0]
425425
documentation = service_config.get("documentation", {})
426426
api_description = documentation.get("summary", "")
427-
issue_tracker = service_config.get(
427+
issue_tracker = publishing.get(
428428
"new_issue_uri", "https://github.com/googleapis/google-cloud-python/issues"
429429
)
430430

0 commit comments

Comments
 (0)