We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf697e commit 8f245c8Copy full SHA for 8f245c8
scripts/gha/trigger_workflow.py
@@ -81,7 +81,7 @@ def main():
81
workflow_url = 'https://github.com/firebase/firebase-cpp-sdk/actions/runs/%s' % (run_id)
82
else:
83
# Couldn't get a run ID, use a generic URL.
84
- workflow_url = '/%s/actions/workflows/%s?query=%s+%s' % (
+ workflow_url = '%s/actions/workflows/%s?query=%s+%s' % (
85
github.GITHUB_API_URL, args.workflow,
86
urllib.parse.quote('event:workflow_dispatch', safe=''),
87
urllib.parse.quote('branch:'+args.branch, safe=''))
0 commit comments