Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
commently
Advanced tools
Commently Core is the underlying API package wrapped by the CLI
To use, you can simply import it into your project like so. Remember that you will still need to provide a GITHUB_TOKEN
or GH_TOKEN
, as well as a GITHUB_URL
(default to public github) in your environment to be able to comment.
import Commently from 'commently/core';
const commently = new Commently({
pr: '1234',
owner: 'GithubOrg',
repo: 'RepoName',
title: 'The Title of Your PR Comment',
key: 'unique-id'
});
commently
.autoComment('The body of your PR')
.then(response => {
console.log(symbols.success, `Successfully commented on ...}`);
console.log(response.data.html_url);
})
.catch(err => {
console.log(symbols.error, 'Oops! Something went wrong...');
console.log(err);
});
FAQs
Easily comment on github issues and PRs
The npm package commently receives a total of 9,625 weekly downloads. As such, commently popularity was classified as popular.
We found that commently demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.