βοΈ Important announcement: Greenkeeper will be saying goodbye π and passing the torch to Snyk on June 3rd, 2020! New installations are no longer possible. Find out how to migrate to Snyk and more at greenkeeper.io
Website | Blog | Contributing | FAQ | General Documentation
Who else is using it? Anyone I know?
Well, weβre helping out these fine folks, for example:
- lodash
- PouchDB
- Karma
- request
- Googleβs AMP
- Modernizr
- standard
- webtorrent
- mustache.js
- FreeCodeCamp
- HTML5 Boilerplate
And many thousands more!
Tell me more about how Greenkeeper works, please!
No problem! Greenkeeper sits between npm and GitHub, observing all of the modules you depend on. When they get updated, your project gets a new branch with that update. Your CI tests kick in, and we watch them to see whether they pass.
Based on the test results and your current version definitions we will open up clear, actionable issues for you. If thereβs nothing for you to do, we wonβt nag you, but if a dependency does break your software, youβll know immediately, and can get started on fixing the problem.
And if a youβve got stuff to do, we understand. Sometimes you simply have to make a pragmatic trade-off between fixing your build for the breaking update or just pinning the working version so you can get back to it later. Our bot can respect that, and will let you pin the last working version of the dependency in the issue thread:
Screenshot - Pinning dependencies |
---|
I found a critical bug, who do I talk to?
If youβve discovered a security-related bug in Greenkeeper or related services, please disclose it to us confidentially by emailing us at support@greenkeeper.io
If you find any, donβt share security vulnerabilities publicly (in a GitHub issue for example), always keep these conversations with us confidential so we have a chance to get things fixed before anyone exploits the bug.
Jobs Service Documentation
This is the core service of Greenkeeper. It takes care of the dependency update logic and the related pull request/issue creation.
π¨π§ The following documentation might be outdated. We are currently working on improving this section.
The github-event
job gets created by our hooks service.
It's answering all incoming webhooks from GitHub and creates this job with the full payload from github as job.data
.
It only adds one additional type
property to it with the name of the webhook event.
Depending on action
a new entry is added/removed to/from the installations database.
All repositories are requested from GitHub to sync them with our database.
All repositories with a package.json receive their initial pull request (create-initial-branch
).
Depending on action
entries are added/removed to/from the repositories database.
Added repositories with a package.json receive their initial pull request (create-initial-branch
).
The package.json contents are retrieved, parsed and synced to our database.
If the status affects a Greenkeeper pull_request the results are recorded in our repositories database with all metadata.
If the status of a branch is failing
, it will create a new branch to pin to the last working version create-pin-branch
.
When the status for that pin branch is coming, an issue is created with create-issue
.
If that issue already exists and it's still failing it will comment comment-issue
, but if it's
succeeding it will close that issue with close-issue
.
When an initial Greenkeeper pull request is merged the repository gets enabled (enable-repository
).
When a Greenkeeper pull request is merged older/included pull requests for the same dependency are closed (delete-older-branches
).
Unmergeable Greenkeeper pull requests get "rebased" (rebase-unmergeable-branches
).
The registry-change
job gets created by our changes service.
It's listening for changes from npm and creates this job with the full payload from npm as job.data
.
It figures out whether the change actually contains a new version, and on which dist-tag. It stores the versions in our npm database.
It figures out who is depending on the dependency that changed and schedules branch creation jobs for enabled ones. (create-version-branch
)
Creates a branch for a dependency, pinning to the version before.
Creates an issue with the information that a dependency is failing.
Comments to an issue that a dependency is still failing.
Closes an issue because the dependency is no longer failing.
Used to be package-bump with our oAuth App.
If there are no tests detected, or the update is outside of the version range triggers create-version-pr
right away.
Used to be package-send-pr with our oAuth App.
Deletes all branches related to a dependency which version is less or equal to the specified one.
Used to be package-pin with our oAuth App.
Used to happen inside webservice with our oAuth App.
Used to happen inside pull-request-close with our oAuth App.
Used to happen inside pull-request-close with our oAuth App.
{
_id: '8422', // github account id
installation: 10, // installation id,
plan: 'free', // plan
login: 'finnp', // github name
type: 'User' // 'User' or 'Organization'
}
{
_id: '111', // String(repo.id),
type: 'repository',
enabled: false,
accountId: '8422', // account id (key for installations)
fullName: 'greenkeeperio/jobs',
private: true,
fork: false,
hasIssues: true,
packages: {
'package.json': {}
}
}
{
_id: '111:branch:deadbeefdeadbeef', // repositoryId + sha
type: 'branch',
purpose: undefined, // can be 'pin', otherwise not defined
sha: 'deadbeefdeadbeef',
base: 'master', // base branch
head: 'greenkeeper-lodash-8.0.0', // branch name
dependency: 'lodash',
version: '8.0.0',
oldVersion: '~7.0.0',
oldVersionResolved: '7.0.0',
dependencyType: 'devDependencies',
repositoryId: '111',
accountId: '8422',
processed: true, // the branch was processed
referenceDeleted: true, // the branch reference was deleted
state: 'failure', // ci status
updated_at: '2016-09-28T15:07:03.022Z'
}
{
_id: '111:pr:6', // repositoryId, PrId
type: 'pr',
repositoryId: 11,
accountId: 42
initial: true, // is this an initial pull request?
number: 6,
head: 'greenkeeper-lodash-8.0.0', // branch name
state: 'open', // 'closed'
merged: true,
updated_at, '2016-09-28T15:07:03.022Z'
}
{
_id: '111:issue:6',
type: 'issue',
repositoryId: '111',
dependency: 'lodash',
version: '1.0.0',
number: 6,
state: 'open',
updated_at
}