diff --git a/.dotnet/.github/ISSUE_TEMPLATE/bug_report.yaml b/.dotnet/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 000000000..479ab9af9 --- /dev/null +++ b/.dotnet/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,72 @@ +name: Bug report +description: Report an issue or bug with this library +labels: ['bug'] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: checkboxes + id: non_api + attributes: + label: Confirm this is not an issue with the underlying OpenAI API + description: Issues with the underlying OpenAI API should be reported in our [Developer Community](https://community.openai.com/c/api/7) + options: + - label: This is an issue with the Python library + required: true + - type: checkboxes + id: non_azure + attributes: + label: Confirm this is not an issue with Azure OpenAI + description: Issues related to Azure OpenAI should be reported in the [Azure SDK repo](https://github.com/Azure/azure-sdk-for-net/issues) + options: + - label: This is not an issue with Azure OpenAI + required: true + - type: textarea + id: what-happened + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is, and any additional context. + placeholder: Tell us what you see. + validations: + required: true + - type: textarea + id: repro-steps + attributes: + label: To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. Fetch a '...' + 2. Update the '....' + 3. See error + validations: + required: true + - type: textarea + id: code-snippets + attributes: + label: Code snippets + description: If applicable, add code snippets to help explain your problem. + render: C# + validations: + required: false + - type: input + id: os + attributes: + label: OS + placeholder: winOS + validations: + required: true + - type: input + id: language-version + attributes: + label: .NET version + placeholder: + validations: + required: true + - type: input + id: lib-version + attributes: + label: Library version + placeholder: + validations: + required: true \ No newline at end of file diff --git a/.dotnet/.github/ISSUE_TEMPLATE/config.yml b/.dotnet/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..cb9e00e0b --- /dev/null +++ b/.dotnet/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,7 @@ +blank_issues_enabled: false +contact_links: + - name: OpenAI support + url: https://help.openai.com/ + about: | + Please only file issues here that you believe represent actual bugs or feature requests for the OpenAI .NET library. + If you're having general trouble with the OpenAI API, please visit our help center to get support. \ No newline at end of file diff --git a/.dotnet/.github/ISSUE_TEMPLATE/feature_request.yaml b/.dotnet/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 000000000..cdb9812e9 --- /dev/null +++ b/.dotnet/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,36 @@ +name: Feature request +description: Suggest an idea for this library +labels: ['feature-request'] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: checkboxes + id: non_api + attributes: + label: Confirm this is not a feature request for the underlying OpenAI API. + description: Feature requests for the underlying OpenAI API should be reported in our [Developer Community](https://community.openai.com/c/api/7) + options: + - label: This is not a feature request for the underlying OpenAI API + required: true + - type: checkboxes + id: non_azure + attributes: + label: Confirm this is not a feature request for Azure OpenAI. + description: Feature requests for Azure OpenAI should be reported reported in the [Azure SDK repo](https://github.com/Azure/azure-sdk-for-net/issues) + options: + - label: This is not a feature request for Azure OpenAI + required: true + - type: textarea + id: feature + attributes: + label: Describe the feature or improvement you're requesting + description: A clear and concise description of what you want to happen. + validations: + required: true + - type: textarea + id: context + attributes: + label: Additional context + description: Add any other context about the feature request here. \ No newline at end of file