Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Create release on github with help of node. To upload asset use putasset.
npm i grizzly -g
$ grizzly
Usage: grizzly [options]
Options:
-h, --help display this help and exit
-v, --version output version information and exit
-r, --repo name of repository
-u, --user user of repository
-t, --tag tag of repository (shoul exist!)
-n, --name name of release
-b, --body body of release
-p, --prerelease set prerelease
--no-prerelease unset prerelease (default)
-tn, --token github token <https://github.com/settings/tokens/new>
$ grizzly -tn "token from url" \
-r grizzly -u coderaiser -t v1.0.0 \
-n "grizzly v1.0.0" -b "some body"
npm i grizzly --save
Data will be read before execution in next order (left is more important):
command line -> ~/.grizzly.json
var grizzly = require('grizzly'),
token = 'token from https://github.com/settings/applications';
grizzly(token, {
user: 'coderaiser',
repo: 'grizzly',
tag: 'v1.0.0',
name: 'grizzly v1.0.0',
body: 'changelog'
prerelease: false /* default */
}, function(error) {
if (error)
console.error(error.message);
});
MIT
FAQs
create release on github
The npm package grizzly receives a total of 5,808 weekly downloads. As such, grizzly popularity was classified as popular.
We found that grizzly demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.