From 502570706a09f9bae1c04486f5dd9e5d8a765c37 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 12 Feb 2021 19:13:06 +0000 Subject: [PATCH] use github discussions for questions and feature requests --- .github/ISSUE_TEMPLATE/config.yml | 11 +++++++ .github/ISSUE_TEMPLATE/feature_request.md | 36 ----------------------- .github/ISSUE_TEMPLATE/question.md | 36 ----------------------- 3 files changed, 11 insertions(+), 72 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..91af5560aa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: true +contact_links: +- name: Question + url: https://github.com/samuelcolvin/pydantic/discussions/new + about: Ask a question about how to use pydantic using github discussions + +- name: Feature Request + url: https://github.com/samuelcolvin/pydantic/discussions/new + about: > + If you think we should add a new feature to pydantic, please start a discussion, once it attracts + wider support, it can be migrated to an issue diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 5a43008e57..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -name: Feature Request -about: Suggest a new feature or change to pydantic -labels: feature request ---- - -### Checks - -* [ ] I added a descriptive title to this issue -* [ ] I have searched (google, github) for similar issues and couldn't find anything -* [ ] I have read and followed [the docs](https://pydantic-docs.helpmanual.io/) and still think this feature/change is needed -* [ ] After submitting this, I commit to one of: - * Look through open issues and helped at least one other person - * Hit the "watch" button on this repo to receive notifications and I commit to help at least 2 people that ask questions in the future - * Implement a Pull Request for a confirmed bug - - - -# Feature Request - -Output of `python -c "import pydantic.utils; print(pydantic.utils.version_info())"`: -``` -... -``` - - - - - - -```py -import pydantic - -... -``` diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index d30d3268c6..0000000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -name: Question -about: Ask a question about how to use pydantic -labels: question ---- - -### Checks - -* [ ] I added a descriptive title to this issue -* [ ] I have searched (google, github) for similar issues and couldn't find anything -* [ ] I have read and followed [the docs](https://pydantic-docs.helpmanual.io/) and couldn't find an answer -* [ ] After submitting this, I commit to one of: - * Look through open issues and helped at least one other person - * Hit the "watch" button on this repo to receive notifications and I commit to help at least 2 people that ask questions in the future - * Implement a Pull Request for a confirmed bug - - - -# Question - -Output of `python -c "import pydantic.utils; print(pydantic.utils.version_info())"`: -``` -... -``` - - - - - - -```py -import pydantic - -... -```