Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
auto-approver
Advanced tools
Automatically approve all GitHub PRs which match a specific pattern.
ℹ️ This is a pure ESM module.
Run yarn global add auto-approver
or npm i -g auto-approver
.
Usage: auto-approver [options]
Automatically approve all GitHub PRs which match a specific pattern.
Options:
-m, --message <text> comment on PRs instead of approving them
-c, --config <path> specify a configuration file (default: .approverrc.json)
-V, --version output the version number
-h, --help display help for command
To use a configuration file, add a configuration file following the cosmiconfig standard (e.g. .approverrc.json
) to your project and the auto-approver will find it automatically. Options from the CLI still take precedence over the configuration file.
The structure of the configuration file is the following:
{
/** The GitHub auth token */
authToken: string;
/** Don't send any data */
dryRun?: boolean;
/** Include draft PRs */
keepDrafts?: boolean;
/** All projects to include */
projects: {
/** All projects hosted on GitHub in the format `user/repo` */
gitHub: string[];
};
/** Post a comment on the PRs instead of approving them */
useComment?: string;
/**
* Currently not in use
* @deprecated
*/
verbose?: boolean;
}
If you would like to use a custom configuration file, start the CLI with the option --config <file>
.
FAQs
Automatically approve all GitHub PRs which match a specific pattern.
The npm package auto-approver receives a total of 6 weekly downloads. As such, auto-approver popularity was classified as not popular.
We found that auto-approver 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
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.