Helper to periodically visit installed integrations and repositories
JavaScript
Latest commit 5859798 Jun 10, 2017 @bkeepers bkeepers 0.2.0
Permalink
Failed to load latest commit information.
LICENSE
README.md
index.js
package-lock.json
package.json

README.md

Probot: Visitor

A helper for probot to visiting installed repositories on an interval.

Usage

const visitor = require('probot-visitor');

module.exports = robot => {
  visitor(robot, (installation, repository) => {
    // this function is called on an interval, which is 1 hr by default;
  });
};

TODO:

  • Get it working
  • Move paginate.js into probot core
  • Ability to manually stop visiting a repository (e.g. like when there is not configuration for the plugin)
  • Stop visiting uninstalled integrations
    • and repositories removed from an integration
  • Start visiting newly installed integrations
    • and repositories added to an existing installation