diff --git a/.github/ISSUE_TEMPLATE/feature_request_core.md b/.github/ISSUE_TEMPLATE/feature_request_core.md new file mode 100644 index 00000000000..c774e1228ff --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_core.md @@ -0,0 +1,30 @@ +--- +name: Request a gRPC Core feature +about: Suggest an idea for this project +labels: kind/enhancement, priority/P2, lang/core +assignees: drfloob + +--- + + + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request_cpp.md similarity index 93% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request_cpp.md index adc5b1c2a83..3cc6c7b35fc 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request_cpp.md @@ -1,7 +1,7 @@ --- -name: Request a feature +name: Request a gRPC C++ feature about: Suggest an idea for this project -labels: kind/enhancement, priority/P2 +labels: kind/enhancement, priority/P2, lang/c++ assignees: drfloob --- diff --git a/.github/ISSUE_TEMPLATE/feature_request_csharp.md b/.github/ISSUE_TEMPLATE/feature_request_csharp.md new file mode 100644 index 00000000000..e91d06eb4ca --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_csharp.md @@ -0,0 +1,30 @@ +--- +name: Request a gRPC C# feature +about: Suggest an idea for this project +labels: kind/enhancement, priority/P2, lang/C# +assignees: jtattermusch + +--- + + + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request_objc.md b/.github/ISSUE_TEMPLATE/feature_request_objc.md new file mode 100644 index 00000000000..05ff137a2bc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_objc.md @@ -0,0 +1,30 @@ +--- +name: Request a gRPC ObjC feature +about: Suggest an idea for this project +labels: kind/enhancement, priority/P2, lang/ObjC +assignees: dennycd + +--- + + + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request_php.md b/.github/ISSUE_TEMPLATE/feature_request_php.md new file mode 100644 index 00000000000..39be7d27c27 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_php.md @@ -0,0 +1,30 @@ +--- +name: Request a gRPC PHP feature +about: Suggest an idea for this project +labels: kind/enhancement, priority/P2, lang/php +assignees: stanley-cheung + +--- + + + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request_python.md b/.github/ISSUE_TEMPLATE/feature_request_python.md new file mode 100644 index 00000000000..e4ffc3f52c0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_python.md @@ -0,0 +1,30 @@ +--- +name: Request a gRPC Python feature +about: Suggest an idea for this project +labels: kind/enhancement, priority/P2, lang/Python +assignees: gnossen + +--- + + + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request_ruby.md b/.github/ISSUE_TEMPLATE/feature_request_ruby.md new file mode 100644 index 00000000000..f4919c350af --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_ruby.md @@ -0,0 +1,30 @@ +--- +name: Request a gRPC Ruby feature +about: Suggest an idea for this project +labels: kind/enhancement, priority/P2, lang/ruby +assignees: apolcyn + +--- + + + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context about the feature request here. diff --git a/.github/change_repo_manager.sh b/.github/change_repo_manager.sh index e48a47ffd10..23f3edd3843 100755 --- a/.github/change_repo_manager.sh +++ b/.github/change_repo_manager.sh @@ -25,7 +25,7 @@ echo "Change repo manager to $1" BASE_PATH=$(dirname $0) -for file in bug_report_core.md bug_report_cpp.md cleanup_request.md feature_request.md question.md +for file in bug_report_core.md bug_report_cpp.md cleanup_request.md feature_request_core.md feature_request_cpp.md question.md do sed -i".bak" -E "s/assignees: ([a-zA-Z0-9-]+)/assignees: $1/" "$BASE_PATH/ISSUE_TEMPLATE/$file" rm "$BASE_PATH/ISSUE_TEMPLATE/$file.bak"