Skip to content

fix(ci): publish github package under org scope#4

Merged
Jess Sullivan (Jesssullivan) merged 2 commits into
mainfrom
codex/tin713-gh-packages-scope
Apr 28, 2026
Merged

fix(ci): publish github package under org scope#4
Jess Sullivan (Jesssullivan) merged 2 commits into
mainfrom
codex/tin713-gh-packages-scope

Conversation

@Jesssullivan

Copy link
Copy Markdown
Contributor

Fixes the GitHub Packages mirror scope from the public npm scope to the GitHub org scope.

The public npm artifact remains under @tummycrypt/*; this only changes the github_package_name input used by the reusable publish workflow so GitHub Packages publishes under @tinyland-inc/*.

Tracking: TIN-713

@greptile-apps

greptile-apps Bot commented Apr 28, 2026

Copy link
Copy Markdown

Greptile Summary

This PR fixes the GitHub Packages mirror scope by updating github_package_name from @tummycrypt/tinyland-user-resolution to @tinyland-inc/tinyland-user-resolution in both the CI and Publish workflows. The public npm artifact under @tummycrypt/* is unaffected; only the GitHub Packages publication target changes.

Confidence Score: 5/5

Safe to merge — minimal, targeted one-line change in each workflow file with no logic impact.

Both changes are identical single-line string substitutions correcting the GitHub Packages org scope. No logic, permissions, or secrets handling is modified. The CI workflow retains dry_run: true and the publish workflow's actual publish path is unaffected beyond the corrected registry target.

No files require special attention.

Important Files Changed

Filename Overview
.github/workflows/ci.yml Single-line change: corrects github_package_name scope from @tummycrypt to @tinyland-inc; dry_run: true and packages: read remain unchanged.
.github/workflows/publish.yml Single-line change: corrects github_package_name scope from @tummycrypt to @tinyland-inc; publish permissions and dry-run logic are unchanged.

Sequence Diagram

sequenceDiagram
    participant GH as GitHub Actions
    participant NPM as npm Registry (@tummycrypt/*)
    participant GHP as GitHub Packages (@tinyland-inc/*)

    GH->>NPM: publish (npm_access: public)
    Note over NPM: unchanged — @tummycrypt/tinyland-user-resolution

    GH->>GHP: publish (github_package_name)
    Note over GHP: BEFORE: @tummycrypt/tinyland-user-resolution
    Note over GHP: AFTER:  @tinyland-inc/tinyland-user-resolution
Loading

Reviews (1): Last reviewed commit: "fix(ci): publish github package under or..." | Re-trigger Greptile

@Jesssullivan Jess Sullivan (Jesssullivan) merged commit 20d90ea into main Apr 28, 2026
5 checks passed
@Jesssullivan Jess Sullivan (Jesssullivan) deleted the codex/tin713-gh-packages-scope branch April 28, 2026 22:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant