Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robhaswell/github-salto
Dependency graph for Github repository issues
https://github.com/robhaswell/github-salto
Last synced: 19 days ago
JSON representation
Dependency graph for Github repository issues
- Host: GitHub
- URL: https://github.com/robhaswell/github-salto
- Owner: robhaswell
- Created: 2014-07-17T11:00:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-17T11:03:32.000Z (over 10 years ago)
- Last Synced: 2023-03-24T07:43:38.246Z (almost 2 years ago)
- Language: PHP
- Size: 142 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Dependency tagging
Within your issues (and comments) write something along the lines of:
> Depends on #23This way `github-salto` will know that this issue depends on/is blocked by issue 23.
You can also configure your own regexp matching pattern in `resources/config/default.php`.## Github OAuth token
To authenticate against the Github-API run `graph auth` once manually.
The script will ask for your credentials and request an OAuth-token with Github. Your username/password will not be stored.
```sh
./scripts/cm.php graph auth
```## Dot output
Run the `graph create`-command to traverse through the issues of a given repository,
and create a dependency graph which will be printed in the [dot](http://www.graphviz.org/content/dot-language)-format to the standard output.
```sh
./scripts/cm.php graph create
```You can then pass this dot-script to the `dot` program to render e.g. to PDF:
```sh
./scripts/cm.php graph create | dot -T pdf > output.pdf
```