Skip to content

Instantly share code, notes, and snippets.

@russelldavis
Created March 27, 2014 23:33
Show Gist options
  • Save russelldavis/9821571 to your computer and use it in GitHub Desktop.
Save russelldavis/9821571 to your computer and use it in GitHub Desktop.
Helpers for creating maniphest tasks (requires https://github.com/bloomberg/phabricator-tools)
#!/bin/bash
exec arcyon task-create "$@" -p normal --format-url --projects Product $PROJ | tee >(pbcopy)
#!/bin/bash
exec otask "$@" -o YOURNAME
@russelldavis
Copy link
Author

Example usage:

PROJ="Payouts-v2 Later" task.sh "do stuff"

Creates a normal-priority task assigned to YOURNAME with three projects: "Payouts-v2", "Later", and "Product" (included via otask.sh). The task url will be in your clipboard on completion.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment