feat!: support simple-release v3 action releases#22
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR upgrades the action to work with @simple-release/* v3, adopts the v3 input/options model, and bumps the action runtime to Node.js 24 (including adding a new snapshot workflow mode).
Changes:
- Switch from a single
branchinput to v3-stylegetInputOptions()and mergecheckout/bump/maintenanceBranch/publishoptions; addsnapshotworkflow execution. - Migrate lockfile tooling from npm to pnpm (add
pnpm-lock.yaml/pnpm-workspace.yaml, removepackage-lock.json). - Update action metadata and docs to expose new bump/publish/maintenance inputs and Node 24 runtime.
Reviewed changes
Copilot reviewed 8 out of 11 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
src/index.js |
Integrates v3 input options merging and adds snapshot workflow path. |
README.md |
Documents the new snapshot workflow and additional release/bump inputs. |
pnpm-workspace.yaml |
Adds pnpm workspace settings (peer install + minimum release age exclusions). |
pnpm-lock.yaml |
Introduces pnpm lockfile for dependency resolution. |
package.json |
Updates dependencies to @simple-release/* v3 and adjusts packaging metadata. |
package-lock.json |
Removes npm lockfile in favor of pnpm. |
action.yml |
Adds new inputs and updates runtime to node24. |
.tool-versions |
Switches toolchain pins toward pnpm and updates Node pin. |
.simple-release.json |
Adds simple-release config for this repo/action. |
.gitignore |
Expands ignores to cover node_modules and additional local tooling artifacts. |
.github/workflows/release.yml |
Adds/updates the repo’s release workflow using pnpm + Node 24. |
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
BREAKING CHANGE: the action now runs on Node.js 24 and uses @simple-release v3 release options.
8341391 to
4a2a2e0
Compare
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.
BREAKING CHANGE: the action now runs on Node.js 24 and uses @simple-release v3 release options.