ci: pass GITHUB_TOKEN to Start cluster step in e2e workflow#149
Merged
scasplte2 merged 2 commits intoJun 11, 2026
Merged
Conversation
snapshot-streaming is built from source during 'just up', requiring sbt to resolve dependencies from GitHub Packages. Without GITHUB_TOKEN in the step environment, sbt fails with: RuntimeException: unable to locate a valid GitHub token from Or(GitConfig(github.token),Environment(GITHUB_TOKEN)) This regression was introduced in scasplte2#132 (which removed the pre-staged snapshot-streaming JAR download step). Pass the token to the Start cluster step to restore E2E functionality. Fixes all open PRs blocked on this shared E2E failure.
Collaborator
Author
|
9/10 — Targeted CI fix: passes Iteration 1/5 | Reviewed by CodeBot 🔍 |
scasplte2
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
E2E Tests failing across all open PRs with:
Root Cause
PR #132 removed the pre-staged snapshot-streaming JAR download step, which means
just upnow builds snapshot-streaming from source. The sbt build for snapshot-streaming resolves dependencies from GitHub Packages, which requires a GitHub token. TheStart clusterstep didn't haveGITHUB_TOKENin its environment.Fix
Pass
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}as an env var to theStart clusterstep.Impact
Unblocks E2E on all open PRs: #134, #119, #118, #107, #106, #91