diff --git a/.github/ISSUE_TEMPLATE/bug_form.yaml b/.github/ISSUE_TEMPLATE/bug_form.yaml new file mode 100644 index 0000000..351095c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_form.yaml @@ -0,0 +1,92 @@ +name: Bug Report Form +description: Report a bug or a similiar issue. +labels: + - needs:triage +title: "Bug: " +body: + - type: markdown + attributes: + value: | + Thank you for reporting an issue. Please fill out the below template with as much detail as possible. Incomplete bug reports are likely to be closed without comment. + + If you want to suggest a feature use the + [Feature Request template](https://github.com/akaihola/darglint2/issues/new?template=feature_request.md) + instead. + + - type: checkboxes + id: checklist-existing-issues + attributes: + label: Existing Issues + description: | + Please do not create a new issue for a problem that was already reported but use the existing thread. + However issues that only exist in the original [darglint](https://github.com/terrencepreilly/darglint) + repository may be reported again in this one. + Please link all issues that might relate to this report below. + options: + - label: | + I have searched the [darglint2 issue tracker](https://github.com/akaihola/darglint2/issues?q=is%3Aissue) + for open and closed issues to avoid duplicates. + required: true + - label: | + I have searched the [darglint issue tracker](https://github.com/terrencepreilly/darglint/issues?q=is%3Aissue) + for open and closed issues. + required: false + + - type: textarea + id: related-issues + attributes: + label: Related issues + description: Link all issues that might relate to this report. + placeholder: | + - #14 + - terrencepreilly/darglint#78 + + - type: textarea + id: description + attributes: + label: Description + description: | + Please describe your issue and its context in a clear and concise way. + Please create a minimal, reproducible example (MRE) that you have actually tested to work. + Please also use a minimal configuration and make sure that you don't overlook any config files in your working directory. + Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve + Please enclose the minimal example and the corresponding output. + + Use code blocks with `py`, `pytb`, `dosini` or `toml` highlighting where applicable. + placeholder: | + I encountered a bug. + + ```py + # minimal example (MRE) + ``` + + Steps to reproduce: + 1. Save MRE to `somefile.py` + 2. Run `darglint2 ` in bash + 3. See error + + ``` + some output + ``` + + ```pytb + Error message + ``` + + validations: + required: true + + - type: input + id: version + attributes: + label: Version + description: Run `darglint2 --version` to find out. + validations: + required: true + + - type: input + id: os + attributes: + label: OS + description: Operating system where useful (e.g. in case of OSErrors) + placeholder: diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..c4da1cc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,67 @@ +--- +name: Bug Report +about: Report a bug or a similiar issue - the classic way +title: "" +labels: "needs: triage" +assignees: "" +--- + + + +#### Existing Issues + + + +- [ ] I have searched the [darglint2 issue tracker](https://github.com/akaihola/darglint2/issues?q=is%3Aissue) for open and closed issues to avoid duplicates. +- [ ] I have searched the [darglint issue tracker](https://github.com/terrencepreilly/darglint/issues?q=is%3Aissue) for open and closed issues. (optional) + +I have found the following related issues: + + + +#### Description + + + + + +#### Environment + + + +- Version: +- OS: diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..4f95f6b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +contact_links: + - name: Documentation + url: https://akaihola.github.io/darglint2/ + about: Documentation on installing, using and contributing to Darglint2. + + - name: Support + url: https://github.com/akaihola/darglint2/discussions/categories/faq + about: Please ask for support in the Discussions FAQ. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..98dd0ea --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,33 @@ +--- +name: Feature Request +about: Suggest an idea for this project. +title: "FR: " +labels: "type:enhancement" +assignees: "" +--- + +#### The problem + + + +#### Requested Solution + + + +#### Alternatives + + + +#### Additional context + + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..f3a126c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,62 @@ + + +### Description + + + +### Related Issue + + + +### Motivation and Context + + + +### How Has This Been Tested? + + + +### Screenshots (if appropriate): + +### Types of changes + + + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) + +### Checklist: + + + +- [ ] I have read the [CONTRIBUTING]() guide. +- [ ] My code follows the [code style]() of this project. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. +- [ ] I have added tests to cover my changes. +- [ ] All new and existing tests passed. + +_I provide my contribution under the terms of the [license](./../../LICENSE.txt) of this repository and I affirm the [Developer Certificate of Origin][dco]._ + +[dco]: https://developercertificate.org/ + +