forked from mystiq/dex
494be28325
The proposal templates was not intended to be show for every issue,
only for proposal. Revert that issue template and add more general
one in a follow up commit.
This reverts commit 09cb38577f
.
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"
|