Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
hubormaster
Advanced tools
Phabricator-style lint and test result for your GitHub repository
Hubormaster (read: habormaster) is a module to help writing comments for your lint and test result in your GitHub repository.
It's similar to how Phabricator's harbormaster.sendmessage
works: you can specify list of lint result that will be
posted inside inline comment on specific code in a commit (either in pull request or in main branch) or test result
that will be posted as commit comment
npm install hubormaster
# or
yarn add hubormaster
import Hubormaster from 'hubormaster';
// will post to github.com/:owner/:repo
const hubormaster = Hubormaster({
owner: 'user/org',
repo: 'repoName',
sha: 'commitShaLong',
});
await hubormaster.sendMessage(lints, tests);
It (currently) only has 1 API sendMessage
which accepts these argument types (similar to Phabricator sendMessage type signature):
type lints = Array.<{
code: string,
severity: "error" | "warning" | "autofix",
path: string,
line: int,
description: string
}>;
type tests = Array.<{
engine: string,
result: "pass" | "fail",
duration: float,
path: string,
details: string
}>
You can see usage example on examples/self.js
. In fact, that exact code is used to post hubormaster comment to hubormaster
repository 💥
MIT
FAQs
Phabricator-style lint and test result in your GitHub repository
We found that hubormaster demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.