diff options
author | Naoto Ono <[email protected]> | 2025-02-06 08:57:46 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-02-06 08:57:46 +0900 |
commit | 6ca8bc8562cbe309d0a0ae82573bc14cd2b2ae47 (patch) | |
tree | 2c14431558e14724e5e00524af9e089206099f37 | |
parent | 141f2924eeb3816941926a425638380ca1b747f6 (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.yml | 1 |
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 }}' |