Skip to content

Configure trusted publishing for NPM#8

Merged
mshriver merged 1 commit into
mainfrom
npm-trusted
Nov 6, 2025
Merged

Configure trusted publishing for NPM#8
mshriver merged 1 commit into
mainfrom
npm-trusted

Conversation

@mshriver
Copy link
Copy Markdown
Contributor

@mshriver mshriver commented Nov 6, 2025

Summary by Sourcery

Configure GitHub Actions workflow for trusted NPM publishing by granting OIDC permissions and enabling provenance generation

CI:

  • Add contents read and id-token write permissions to the publish job
  • Update npm publish step to include --provenance flag and set access to public

Copilot AI review requested due to automatic review settings November 6, 2025 12:49
@sourcery-ai
Copy link
Copy Markdown

sourcery-ai Bot commented Nov 6, 2025

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

The PR tightens workflow permissions and updates the publish step to use OIDC-based provenance and public access flags for NPM publishing.

Flow diagram for updated NPM publish step

flowchart TD
  checkout["actions/checkout@v4"] --> setupnode["actions/setup-node@v4"]
  setupnode --> yarninstall["yarn install --frozen-lockfile"]
  yarninstall --> yarnbuild["yarn build"]
  yarnbuild --> npmpublish["npm publish --provenance --access public"]
Loading

File-Level Changes

Change Details Files
Scoped GitHub Actions permissions to enable OIDC-based provenance
  • Added contents: read permission
  • Added id-token: write permission
.github/workflows/npm-publish.yml
Enhanced npm publish command for provenance and public access
  • Appended --provenance flag to npm publish
  • Specified --access public flag
.github/workflows/npm-publish.yml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Copy Markdown

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey there - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@mshriver mshriver merged commit 74bdd0f into main Nov 6, 2025
8 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR enhances the npm publishing workflow by adding npm provenance support, which improves supply chain security by providing cryptographic attestation of where and how the package was built.

  • Added required permissions (contents: read, id-token: write) for provenance generation
  • Updated npm publish command with --provenance and --access public flags

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

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.

2 participants