Problem
.github/ISSUE_TEMPLATE/config.yml:1 uses blank_lines_enabled: true, which is not a valid key. GitHub's issue-template config schema recognises only blank_issues_enabled and contact_links. The invalid key is silently ignored, so the intent (explicitly enabling blank issues) is not actually expressed by the config.
Steps
curl -sf https://raw.githubusercontent.com/sourcery-ai/sourcery/main/.github/ISSUE_TEMPLATE/config.yml
- Observe line 1:
blank_lines_enabled: true
- Compare against the documented schema: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
Expected
Key should be blank_issues_enabled: true (or removed entirely, since true is the default).
Actual
blank_lines_enabled: true — silently ignored by GitHub; setting has no effect.
Environment
File committed in ae30818 (2022-08-26). Still present on main as of 2026-07-04.
Fix: rename the key on line 1, or delete the line if the default is fine.
Thanks for maintaining sourcery-ai/sourcery!
Problem
.github/ISSUE_TEMPLATE/config.yml:1usesblank_lines_enabled: true, which is not a valid key. GitHub's issue-template config schema recognises onlyblank_issues_enabledandcontact_links. The invalid key is silently ignored, so the intent (explicitly enabling blank issues) is not actually expressed by the config.Steps
curl -sf https://raw.githubusercontent.com/sourcery-ai/sourcery/main/.github/ISSUE_TEMPLATE/config.ymlblank_lines_enabled: trueExpected
Key should be
blank_issues_enabled: true(or removed entirely, sincetrueis the default).Actual
blank_lines_enabled: true— silently ignored by GitHub; setting has no effect.Environment
File committed in ae30818 (2022-08-26). Still present on
mainas of 2026-07-04.Fix: rename the key on line 1, or delete the line if the default is fine.
Thanks for maintaining sourcery-ai/sourcery!