Skip to content

Commit 8f245c8

Browse files
committed
Fix typo in log output.
1 parent eaf697e commit 8f245c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gha/trigger_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def main():
8181
workflow_url = 'https://github.com/firebase/firebase-cpp-sdk/actions/runs/%s' % (run_id)
8282
else:
8383
# Couldn't get a run ID, use a generic URL.
84-
workflow_url = '/%s/actions/workflows/%s?query=%s+%s' % (
84+
workflow_url = '%s/actions/workflows/%s?query=%s+%s' % (
8585
github.GITHUB_API_URL, args.workflow,
8686
urllib.parse.quote('event:workflow_dispatch', safe=''),
8787
urllib.parse.quote('branch:'+args.branch, safe=''))

0 commit comments

Comments
 (0)