Package Exports
- @auto-it/omit-release-notes
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@auto-it/omit-release-notes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Omit Release Notes Plugin
Filter PRs with release notes that shouldn't make it into a release. By default auto will not include and Release Notes from renovate PRs. This plugin allows you to omit more PRs from effecting you releases.
Installation
This plugin is not included with the auto CLI installed via NPM. To install:
npm i --save-dev @auto-it/omit-release-notes
# or
yarn add -D @auto-it/omit-release-notesUsage
Yarn can omit by most any field available on a PR. Each options accepts either a string or an array of strings.
{
"plugins": [
[
"omit-release-notes",
{
// By usernames
"username": ["pdbf", "ghost"],
// By name
"name": "Adam",
// By emails
"email": ["foo@gmail.com", "doesnt-exits@yahoo.com"],
// By labels
"labels": "grunt-work"
}
]
]
}