mkdocs-material/.github/ISSUE_TEMPLATE/bug.yml

78 lines
2.7 KiB
YAML
Raw Normal View History

name: Bug Report
description: Report a bug
body:
2021-06-29 11:50:49 +03:00
- type: checkboxes
attributes:
2021-06-29 11:55:52 +03:00
label: Contribution guidelines
2021-06-29 12:00:52 +03:00
description: Please read the contribution guidelines before proceeding.
2021-06-29 11:50:49 +03:00
options:
- label: I've read the [contribution guidelines](https://github.com/squidfunk/mkdocs-material/blob/master/CONTRIBUTING.md) and wholeheartedly agree
required: true
- type: checkboxes
attributes:
label: I've found a bug and checked that ...
2021-06-29 11:55:52 +03:00
description: Make sure that your request fulfills all of the following requirements. If one requirement cannot be satisfied, explain in detail why.
2021-06-29 11:50:49 +03:00
options:
- label: ... the problem doesn't occur with the `mkdocs` or `readthedocs` themes
2021-06-29 11:55:52 +03:00
required: true
2021-06-29 12:00:52 +03:00
- label: ... the problem persists when all overrides are removed, i.e. `custom_dir`, `extra_javascript` and `extra_css`
2021-06-29 11:50:49 +03:00
- label: ... the documentation does not mention anything about my problem
- label: ... there are no open or closed issues that are related to my problem
- type: textarea
attributes:
label: Description
2021-06-29 12:00:52 +03:00
description: Please provide a brief description of the bug in 1-2 sentences.
2021-06-29 11:50:49 +03:00
validations:
required: true
- type: textarea
attributes:
label: Expected behaviour
2021-06-29 12:00:52 +03:00
description: Please describe precisely what you'd expect to happen.
2021-06-29 11:50:49 +03:00
validations:
required: true
- type: textarea
attributes:
label: Actual behaviour
2021-06-29 12:00:52 +03:00
description: Please describe precisely what is actually happening.
2021-06-29 11:50:49 +03:00
validations:
required: true
- type: textarea
attributes:
label: Steps to reproduce
2021-06-29 12:00:52 +03:00
description: Please describe the steps to reproduce the bug.
2021-06-29 11:50:49 +03:00
placeholder: |-
1. ...
2. ...
3. ...
validations:
required: true
- type: textarea
attributes:
label: Package versions
2021-06-29 12:00:52 +03:00
description: Please provide all package versions, i.e. run the commands in backticks on a shell.
2021-06-29 11:50:49 +03:00
value: |-
- Python: `python --version`
- MkDocs: `mkdocs --version`
- Material: `pip show mkdocs-material | grep -E ^Version`
validations:
required: true
- type: textarea
attributes:
label: Configuration
2021-06-29 12:00:52 +03:00
description: Please provide a minimal (!) `mkdocs.yml` to reproduce the bug.
2021-06-29 11:50:49 +03:00
placeholder: |-
site_name: My Docs
site_url: https://example.com/docs
render: yaml
validations:
required: true
- type: textarea
attributes:
label: System information
2021-06-29 12:00:52 +03:00
description: Please provide your operating system and browser type and version.
2021-06-29 11:50:49 +03:00
value: |-
- Operating system: ...
- Browser: ...
validations:
required: true