semantic-release-run-when
v1.0.0
Published
Conditional wrapper plugin for semantic-release
Maintainers
Readme
semantic-release-run-when
Conditional wrapper plugin for semantic-release.
Use it when a plugin should run only on selected release branches or channels while the rest of the release pipeline stays unchanged.
Why use it?
semantic-release runs every configured plugin for each release step the plugin implements. That is a good default, but it makes conditional execution awkward when only one plugin should run on a specific branch or channel.
Without a wrapper, this usually pushes the condition into custom JavaScript config, duplicated release configs, or a custom plugin. semantic-release-run-when keeps the rule declarative: wrap the target plugin, set when, and keep the release config compact.
Install
| Package manager | Command |
| --------------- | -------------------------------------------------- |
| pnpm | pnpm add -D semantic-release-run-when |
| npm | npm install --save-dev semantic-release-run-when |
| yarn | yarn add --dev semantic-release-run-when |
Development
Requirements:
- Node.js
>=24 - pnpm
10.26.2
Install these requirements with any tools available to you, or use the repository Nix Flake to provide them.
This prepares host tooling only. Node.js, pnpm, and Git come from the repository Flake.
Official docs:
Linux multi-user Nix install:
sh <(curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install) --daemonEnable flakes:
mkdir -p ~/.config/nix
printf "experimental-features = nix-command flakes\n" >> ~/.config/nix/nix.confOptional direnv and nix-direnv setup through Nix:
nix profile install nixpkgs#direnv nixpkgs#nix-direnv
mkdir -p ~/.config/direnv
printf 'source $HOME/.nix-profile/share/nix-direnv/direnvrc\n' >> ~/.config/direnv/direnvrcAdd the direnv hook for your shell. For bash:
printf 'eval "$(direnv hook bash)"\n' >> ~/.bashrcFor other shells, use the direnv hook docs.
Prepare the environment with Nix:
nix developOr authorize automatic loading once:
direnv allowAfter that, entering the repository directory loads the Flake environment automatically.
Local development variables can be placed in envs/.env. Use envs/.env.example as the template.
Install dependencies and run checks:
pnpm install --frozen-lockfile
pnpm run checkUsage
semantic-release-run-when wraps one semantic-release plugin. The wrapped plugin is loaded from the project where semantic-release runs.
The wrapped plugin receives semantic-release global plugin options first and its nested plugin config on top, matching semantic-release's normal plugin option merge behavior.
This example uses semantic-release branches and plugins configuration. See plugin for wrapper config formats, when for branch matching, and Lifecycle Behavior for forwarding rules.
export default {
branches: ["master", { name: "beta", prerelease: true }],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"semantic-release-run-when",
{
when: { branch: "master" },
plugin: [
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md",
changelogTitle: "# Changelog",
},
],
},
],
"@semantic-release/npm",
[
"semantic-release-run-when",
{
when: { branch: "master" },
plugin: [
"@semantic-release/git",
{
assets: ["CHANGELOG.md", "package.json", "pnpm-lock.yaml"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
},
],
"@semantic-release/github",
],
};This keeps CHANGELOG.md and release commits on the stable branch while allowing pre-release branches to keep publishing npm and GitHub release artifacts.
Options
plugin
Required. The semantic-release plugin to wrap.
It accepts the same common forms used in semantic-release plugin configuration:
{
plugin: "@semantic-release/changelog";
}{
plugin: [
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md",
},
];
}{
plugin: {
path: "@semantic-release/changelog",
changelogFile: "CHANGELOG.md",
}
}Inline plugin functions and plugin objects are also supported in JavaScript configs.
when
Optional. Defaults to true.
Pass a function for full control:
{
when: ({ branch }) => branch?.type === "release" && branch?.main === true;
}Pass an object for branch matching:
{
when: {
branch: "master",
type: "release",
channel: null,
main: true
}
}Supported criteria match the context.branch object provided to semantic-release plugins:
branchorname- matchescontext.branch.nametype- matchescontext.branch.typechannel- matchescontext.branch.channel; usenullfor the default distribution channelmain- matchescontext.branch.mainprerelease- matchescontext.branch.prerelease
Each criterion value can be a scalar, array, or regular expression in JavaScript configs.
Lifecycle Behavior
The wrapper exports the semantic-release lifecycle methods and forwards each matching lifecycle to the wrapped plugin only when when matches.
If the branch does not match, the wrapped plugin is not loaded or executed for that lifecycle.
If the branch matches but the wrapped plugin does not implement that lifecycle method, the wrapper does nothing for that lifecycle.
