mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-20 17:55:55 +00:00
## Checklist ### Tests - I added test coverage for Go changes... - [ ] in their respective `*_test.go` for unit tests. - [ ] in the `tests/integration` directory if it involves interactions with a live Forgejo server. - I added test coverage for JavaScript changes... - [ ] in `web_src/js/*.test.js` if it can be unit tested. - [ ] in `tests/e2e/*.test.e2e.js` if it requires interactions with a live Forgejo server (see also the [developer guide for JavaScript testing](https://codeberg.org/forgejo/forgejo/src/branch/forgejo/tests/e2e/README.md#end-to-end-tests)). ### Documentation - [ ] I created a pull request [to the documentation](https://codeberg.org/forgejo/docs) to explain to Forgejo users how to use this change. - [ ] I did not document these changes and I do not expect someone else to do it. ### Release notes - [x] I do not want this change to show in the release notes. - [ ] I want the title to show in the release notes with a link to this pull request. - [ ] I want the content of the `release-notes/<pull request number>.md` to be be used for the release notes instead of the title. Fixes #9107 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/9178 Reviewed-by: Lucas <sclu1034@noreply.codeberg.org> Co-authored-by: dawe <dawedawe@posteo.de> Co-committed-by: dawe <dawedawe@posteo.de>
58 lines
2.3 KiB
YAML
58 lines
2.3 KiB
YAML
name: 🦋 Bug Report (web interface / frontend)
|
|
description: Something doesn't look quite as it should? Report it here!
|
|
title: "bug: "
|
|
labels: ["bug/new-report", "forgejo/ui"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
**NOTE: If your issue is a security concern, please email <security@forgejo.org> ([security.txt](https://forgejo.org/.well-known/security.txt)) instead of opening a public issue.**
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
- Please speak English, as this is the language all maintainers can speak and write.
|
|
- Be as clear and concise as possible. A very verbose report is harder to interpret in a concrete way.
|
|
- Be civil, and follow the [Forgejo Code of Conduct](https://codeberg.org/forgejo/code-of-conduct).
|
|
- Take a moment to [check that your issue hasn't been reported before](https://codeberg.org/forgejo/forgejo/issues?q=&type=all&labels=78137).
|
|
- type: dropdown
|
|
id: can-reproduce
|
|
attributes:
|
|
label: Can you reproduce the bug on the Forgejo test instance?
|
|
description: |
|
|
Please try reproducing your issue at https://dev.next.forgejo.org.
|
|
It is running the latest development branch and will confirm the problem is not already fixed.
|
|
If you can reproduce it, provide a URL in the description.
|
|
options:
|
|
- "Yes, I've linked the repository below"
|
|
- "No, I've tried it and the problem is not present there"
|
|
- "No, I can't try it on the test instance for some reason"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: |
|
|
Please provide a description of your issue here, with a URL if you were able to reproduce the issue (see above).
|
|
If you think this is a JavaScript error, include a copy of the JavaScript console.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: screenshots
|
|
attributes:
|
|
label: Screenshots
|
|
description: Please provide at least one screenshot showing the issue.
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: forgejo-ver
|
|
attributes:
|
|
label: Forgejo Version
|
|
description: Forgejo version (or commit reference) your instance is running
|
|
- type: input
|
|
id: browser-ver
|
|
attributes:
|
|
label: Browser Version
|
|
description: The browser and version that you are using to access Forgejo
|
|
validations:
|
|
required: true
|