feat(release.config.cjs): initial configuration file for semantic-release

This commit is contained in:
Dustin Ruetz
2024-04-04 16:34:09 -04:00
parent 7ffac7f68a
commit baa29d5bd0
2 changed files with 16 additions and 2 deletions

14
release.config.cjs Normal file
View File

@@ -0,0 +1,14 @@
/**
* @type {import('semantic-release').GlobalConfig}
*/
module.exports = {
// TODO: This branch is for PR testing purposes, update to "main" if we proceed with this PR.
branches: ["ruetz-automate-releases"],
// TODO: Remove `dryRun` configuration if we proceed with this PR.
dryRun: true,
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
],
};