mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
279 B
8 lines
279 B
|
10 years ago
|
#!/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"
|