Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@maggioli-rd/sr-codeowners-plugin
Advanced tools
Step | Description |
---|---|
verifyConditions | Execute a shell command to verify if the CODEOWNERS file can be created. |
verifyRelease | Execute a shell command to create the CODEOWNERS file. |
Options | Description | Default |
---|---|---|
excludeRegex | RegEx to exclude authors when creating the CODEOWNERS file. | "" |
header | String inserted in the first line of the CODEOWNERS file as header. | Autogen comment (see code) |
codeownersPath | Path where to create the CODEOWNERS file. | .gitlab/CODEOWNERS |
limit | Number of authors obtained from the ranking of authors with the most commits. | 3 |
leaderboard | Generates the ranking of authors with the most commits and includes it as a comment in the CODEOWNERS file. | true |
$ npm install @maggioli-rd/sr-codeowners-plugin -D
The plugin can be configured in the semantic-release configuration file:
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/git", {
"assets": [
"CHANGELOG.md",
"pubspec.yaml",
"CODEOWNERS"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}],
["@maggioli-rd/sr-codeowners-plugin", {
"excludeRegex": "semantic-release-bot",
"codeownersPath": "CODEOWNERS",
"limit": 2
}]
]
}
var config = require('@maggioli-rd/semantic-release-flutter');
var gitPluginIndex = config.plugins.findIndex((plugin) => plugin.includes("@semantic-release/git"))
config.plugins[gitPluginIndex][1]["assets"].push(".gitlab/CODEOWNERS")
config.plugins.push(
["@maggioli-rd/sr-codeowners-plugin", {
"excludeRegex": "RenovateBot|semantic-release-bot",
"limit": 5,
"header": "My personal header"
}]
)
module.exports = config
FAQs
Maggioli Semantic Release Plugin: Codeowners
The npm package @maggioli-rd/sr-codeowners-plugin receives a total of 223 weekly downloads. As such, @maggioli-rd/sr-codeowners-plugin popularity was classified as not popular.
We found that @maggioli-rd/sr-codeowners-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.