forked from mystiq/dex
e64043dd97
* Create a proposal template. Also update CONTRIBUTING.md to mention use of proposals
7 lines
279 B
Bash
Executable file
7 lines
279 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# This creates a URL which will pre-populate an issue with the contents of PROPOSAL_TEMPLATE.md
|
|
|
|
BODY=$(python -c "import urllib, sys; print urllib.quote(sys.stdin.read()[0:-1])" < PROPOSAL_TEMPLATE.md)
|
|
|
|
echo "https://github.com/coreos/dex/issues/new?body=$BODY"
|