GitXplorerGitXplorer
b

workflow

public
46 stars
12 forks
4 issues

Commits

List of commits on branch master.
Unverified
b5acb05d7be2b102a8361ca8780aff3c2e7b3164

Fix applying labels to issues (#20)

hhawkeye116477 committed 6 years ago
Unverified
61c2a63170d2d4df3c044bdf30e00d553df88586

Fix examples

hhawkeye116477 committed 6 years ago
Verified
ef7debca6df15990091b086224842d125a2c7d19

Bump dependecies versions

LLeoColomb committed 6 years ago
Unverified
06424437c97ee6bdee87644e2ba5e84b63b3cfb2

travis badge and .travis.yml linting

LLeoColomb committed 7 years ago
Unverified
41674af225986f4515eda9b425ff7cdc8daddb7b

bump probot to v4

LLeoColomb committed 7 years ago
Verified
c93d6ab3b6febf400723cd7654d7ae8d24b08384

switch to context logging

LLeoColomb committed 7 years ago

README

The README file for this repository.

Probot: Workflow

Build Status

A GitHub App built with probot that enables complete workflow automation.

Installing

Heads up! The demo app is for demo purposes only. It is very likely to go away at some point, so please don't use it for production purposes.

  1. Go to the demo app, click Install, and then select an organization.

  2. Create a .github/probot.js file in your repository with the following contents. See Configuration for more information on what behaviors can be built.

    on('issues.opened')
      .comment(`
        Hello @{{ sender.login }}. Thanks for inviting me to your project.
        Read more about [all the things I can help you with][config]. I can't
        wait to get started!
    
        [config]: https://github.com/bkeepers/workflow/blob/master/docs/configuration.md
      `);
  3. Open a new issue. @probot should post a comment (you may need to refresh to see it).

Setup

  • Install dependencies

    npm install
    
  • Run the bot

    npm start
    

See docs/deploy.md if you would like to run your own instance of this app.