fix(ci): use nonreserved github packages token#10
Conversation
Greptile SummaryThis PR updates the Confidence Score: 5/5Safe to merge — single-line SHA bump to a pinned, reviewed workflow SHA with no logic changes in this repo. Only change is the reusable-workflow SHA pin; all other inputs and the No files require special attention. Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub Actions
participant PW as publish.yml
participant CIT as ci-templates js-bazel-package.yml@82308d0
participant GPR as GitHub Package Registry
GH->>PW: release published / workflow_dispatch
PW->>CIT: uses (SHA-pinned) + secrets: inherit
Note over PW,CIT: TINYLAND_GITHUB_PACKAGES_TOKEN<br/>now passed via inherit
CIT->>GPR: publish @tinyland-inc/tinyland-security
GPR-->>CIT: success
CIT-->>PW: job complete
Reviews (1): Last reviewed commit: "fix(ci): use nonreserved github packages..." | Re-trigger Greptile |
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