Project

pulley

0.0
No commit activity in last 3 years
No release in over 3 years
Pulley will turn pull requests into a json stream on STDOUT for piping through other programs, it can be piped back in with the --publish flag to persist changes to github.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.19.0
 Project Readme

pulley lets you work with github pull requests on the comamnd line.

Concept

Use shell pipelines to pull data out of pull requests and to update the request with relevant information.

Example usage

pulley | add-link-to-staging | pulley --publish

See example scripts at xtoddx/pulley-scripts

Configuration

pulley can read its credentials through git config github.{username|password|repository}, a file named config/pulley.yml under the current directory, or the file ~/.pulley.yml in the current user's home directory.

An example ~/.pulley.yml:

---
:username: xtoddx
:password: topsecret
:repository: xtoddx/pulley

Writing a script for the pipeline

Your pipeline script should always read json from stdin and print json to stdout. You can change the contents of body or title if you add modifed: true to the printed json hash (which lets --publish know to update that pull request).