summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaoto Ono <[email protected]>2025-02-06 08:57:46 +0900
committerGitHub <[email protected]>2025-02-06 08:57:46 +0900
commit6ca8bc8562cbe309d0a0ae82573bc14cd2b2ae47 (patch)
tree2c14431558e14724e5e00524af9e089206099f37
parent141f2924eeb3816941926a425638380ca1b747f6 (diff)
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.
Notes
Notes: Merged-By: ono-max <[email protected]>
-rw-r--r--.github/actions/compilers/action.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/actions/compilers/action.yml b/.github/actions/compilers/action.yml
index ff060ce2e0..30ccd25a12 100644
--- a/.github/actions/compilers/action.yml
+++ b/.github/actions/compilers/action.yml
@@ -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 }}'