Launchable: Fix broken links by passing GITHUB_SERVER_URL (#12704)

@peterzhu2118 mentioned that "View workflow run" button is broken in Launchable. It's because invalid URL is sent from compilers/actions.yaml. Launchable CLI builds URL based on the environment variables. In those variables, GITHUB_SERVER_URL is not set in this case.

Hence, I set GITHUB_SERVER_URL in compilers/actions.yaml in this PR.
This commit is contained in:
Naoto Ono 2025-02-06 08:57:46 +09:00 committed by GitHub
parent 141f2924ee
commit 6ca8bc8562
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2025-02-06 00:01:07 +00:00
Merged-By: ono-max <onoto1998@gmail.com>

View File

@ -122,4 +122,5 @@ runs:
--env GITHUB_EVENT_NAME
--env GITHUB_SHA
--env GITHUB_HEAD_REF
--env GITHUB_SERVER_URL
'ghcr.io/ruby/ruby-ci-image:${{ inputs.tag }}'