OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
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.
|
#!/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"
|
|
|