fix(ci): use nonreserved github packages token#6
Merged
Jess Sullivan (Jesssullivan) merged 1 commit intoApr 28, 2026
Merged
Conversation
Greptile SummaryRenames the passed secret from Confidence Score: 5/5Safe to merge — the change is a targeted secret rename and SHA pin with no logic changes. Only one file changed; both edits are mechanical (secret rename to avoid a GitHub-reserved prefix, SHA bump to the corresponding upstream commit). No logic, permissions, or other workflow behaviour is altered. No files require special attention. Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub Actions
participant PW as publish.yml
participant RT as ci-templates/js-bazel-package.yml (SHA 82308d0)
participant NPM as npm Registry
participant GHPKG as GitHub Packages
GH->>PW: trigger (release published / workflow_dispatch)
PW->>RT: uses reusable workflow with secrets: NPM_TOKEN, TINYLAND_GITHUB_PACKAGES_TOKEN
RT->>NPM: publish (NPM_TOKEN)
RT->>GHPKG: publish (TINYLAND_GITHUB_PACKAGES_TOKEN)
Reviews (1): Last reviewed commit: "fix(ci): use nonreserved github packages..." | Re-trigger Greptile |
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.
Pins the package Publish workflow to the non-reserved token contract from ci-templates#24 and passes
TINYLAND_GITHUB_PACKAGES_TOKENwhere the workflow uses explicit secret mapping.GitHub rejects custom Actions secret names beginning with
GITHUB_, so the previousGITHUB_PACKAGES_TOKENwiring could never be installed as an org secret.Tracking: TIN-713