From ac96bd1788bacab23542a850e749641599695ae8 Mon Sep 17 00:00:00 2001 From: dawe Date: Sat, 6 Sep 2025 13:17:50 +0200 Subject: [PATCH] feat: extend options in bug-reports regarding reproducibility on the Forgejo test instance (#9178) ## 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/.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 Co-authored-by: dawe Co-committed-by: dawe --- .forgejo/issue_template/bug-report-ui.yaml | 5 +++-- .forgejo/issue_template/bug-report.yaml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.forgejo/issue_template/bug-report-ui.yaml b/.forgejo/issue_template/bug-report-ui.yaml index 8bb7bf1d49..1c66c3b648 100644 --- a/.forgejo/issue_template/bug-report-ui.yaml +++ b/.forgejo/issue_template/bug-report-ui.yaml @@ -23,8 +23,9 @@ body: 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" - - "No" + - "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 diff --git a/.forgejo/issue_template/bug-report.yaml b/.forgejo/issue_template/bug-report.yaml index a2b50dbca2..c11ebf9c1f 100644 --- a/.forgejo/issue_template/bug-report.yaml +++ b/.forgejo/issue_template/bug-report.yaml @@ -23,8 +23,9 @@ body: 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" - - "No" + - "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