-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): configure semantic-release automation (#433)
* update .releaserc.yaml * add perms to release * add GITHUB_TOKEN * add install of the dev dep * add presetConfig * cat noop * change ordering to cat the file * add --input-type=module * add package.json * add random input * change args * update package.json * remove run * update trigger file again * remove package.json and update release ref * update to locking version 24 (latest) * update release settings to what we want * update settings file to json and add comment --------- Co-authored-by: Charlie McBride <Charlie.McBride@microsoft.com>
- Loading branch information
1 parent
b776990
commit 960cf4d
Showing
3 changed files
with
63 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"branches": ["main"], | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"preset": "conventionalcommits", | ||
"presetConfig": { | ||
"header": "Changelog", | ||
"types": [ | ||
{"type": "feat", "section": "Features"}, | ||
{"type": "fix", "section": "Bug Fixes"}, | ||
{"type": "chore", "hidden": true}, | ||
{"type": "docs", "hidden": true}, | ||
{"type": "style", "hidden": true}, | ||
{"type": "refactor", "hidden": true}, | ||
{"type": "perf", "hidden": true}, | ||
{"type": "test", "hidden": true} | ||
], | ||
"preMajor": true | ||
} | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"preset": "conventionalcommits", | ||
"presetConfig": { | ||
"header": "Changelog", | ||
"types": [ | ||
{"type": "feat", "section": "Features"}, | ||
{"type": "fix", "section": "Bug Fixes"}, | ||
{"type": "chore", "hidden": true}, | ||
{"type": "docs", "hidden": true}, | ||
{"type": "style", "hidden": true}, | ||
{"type": "refactor", "hidden": true}, | ||
{"type": "perf", "hidden": true}, | ||
{"type": "test", "hidden": true} | ||
], | ||
"preMajor": true | ||
} | ||
} | ||
], | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"draftRelease": true, | ||
"successComment": false, | ||
"releasedLabels": false | ||
} | ||
] | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.