From fe8d8cd02033bba402d11371f0456bcbdcdad944 Mon Sep 17 00:00:00 2001 From: Kenny Van de Maele Date: Mon, 8 Jun 2026 11:40:41 +0200 Subject: [PATCH] fix(issue-template): validate bug reports against dev, not main (#3420) Cloners default to the dev branch (CONTRIBUTING: main is the curated release, dev is where fixes land). The bug template required ticking 'latest code from main', so reporters confirm a stale branch and bugs already fixed on dev get re-filed. Ask them to reproduce on latest dev. --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 67d84b1ff..64f2d7dcf 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -23,7 +23,7 @@ body: required: true - label: This is **not** a security vulnerability. (Vulnerabilities go to [GitHub Security Advisories](https://github.com/pewdiepie-archdaemon/odysseus/security/advisories/new) — see [SECURITY.md](https://github.com/pewdiepie-archdaemon/odysseus/blob/main/SECURITY.md).) required: true - - label: I am running the latest code from `main`. + - label: I am running the latest code from the `dev` branch (the default branch you get on clone, where fixes land first) and the bug still reproduces there. Please `git pull` the latest `dev` before filing. required: true - type: dropdown