Add SBOM pipeline#81
Open
mpreyskurantov wants to merge 11 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds an SBOM generation/validation pipeline to CI by introducing a dedicated tools/make-sbom pnpm project and wiring it into GitHub Actions for both an SBOM-only workflow and the main publish workflow.
Changes:
- Added a standalone pnpm project under
tools/make-sbomthat installs@devexpress/sbom-toolkitand produces SBOM output intotools/make-sbom/dist. - Added a new
.github/workflows/sbom.ymlworkflow to build/package the library, generate an SBOM, validate it, and run a dry-run publish. - Enhanced
.github/workflows/publish.ymlto also generate + validate SBOMs and to upload package/SBOM artifacts.
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
tools/make-sbom/package.json |
New SBOM tool project (pnpm) that installs @devexpress/sbom-toolkit and provides an SBOM build script. |
tools/make-sbom/pnpm-lock.yaml |
Lockfile for the SBOM tool project, pinning dependencies used for SBOM generation. |
tools/make-sbom/pnpm-workspace.yaml |
pnpm workspace-level configuration for the SBOM tool project. |
tools/make-sbom/.npmrc |
Configures GitHub Packages registry for the @devexpress scope used by the SBOM toolkit. |
.github/workflows/sbom.yml |
New workflow to build/package, generate+validate SBOM, and dry-run publish on sbom-dev branch pushes. |
.github/workflows/publish.yml |
Extends publish workflow to build+upload package artifact, generate+validate SBOM, and publish via pnpm. |
.gitignore |
Ignores generated .tgz artifacts and SBOM output directory under tools/make-sbom/dist. |
Files not reviewed (1)
- tools/make-sbom/pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Size Change: 0 B Total Size: 1.34 MB ℹ️ View Unchanged
|
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.
No description provided.