From e11c9285aa07595da37bd4931764815f3d3496ea Mon Sep 17 00:00:00 2001 From: "unicoderbot[bot]" <269805761+unicoderbot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 12:39:28 +0000 Subject: [PATCH 1/3] fix: correct typos in issue templates Closes #54 Co-authored-by: marcossevilla --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- .github/ISSUE_TEMPLATE/performance.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 5688c3f..1edea53 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -12,7 +12,7 @@ body: validations: required: true - type: textarea - id: setps-to-reproduce + id: steps-to-reproduce attributes: label: Steps To Reproduce description: A set of instructions, step by step, explaining how to reproduce the bug. diff --git a/.github/ISSUE_TEMPLATE/performance.yaml b/.github/ISSUE_TEMPLATE/performance.yaml index 854b68b..7962164 100644 --- a/.github/ISSUE_TEMPLATE/performance.yaml +++ b/.github/ISSUE_TEMPLATE/performance.yaml @@ -7,8 +7,8 @@ body: id: description attributes: label: Description - description: Clearly describe what code needs to be changed and what the performance impact is going to be. Bonus point's if you can tie this directly to user experience. - placeholder: " Provide a description of the performance update." + description: Clearly describe what code needs to be changed and what the performance impact is going to be. Bonus points if you can tie this directly to user experience. + placeholder: "Provide a description of the performance update." validations: required: true - type: textarea From 5f58830dcc778546ef366939d403bf6b0080491d Mon Sep 17 00:00:00 2001 From: Marcos Sevilla Date: Wed, 12 Aug 2026 17:32:07 +0200 Subject: [PATCH 2/3] chore: add yml/yaml files to spell check --- .github/workflows/spell_check.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spell_check.yaml b/.github/workflows/spell_check.yaml index 4e0386c..bd3c726 100644 --- a/.github/workflows/spell_check.yaml +++ b/.github/workflows/spell_check.yaml @@ -16,5 +16,8 @@ jobs: spell-check: uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 with: - includes: "**/*.md" + includes: | + **/*.md + **/*.yml + **/*.yaml modified_files_only: false From 5c32d95362efc57b3692905b18cc50347c687688 Mon Sep 17 00:00:00 2001 From: Marcos Sevilla Date: Wed, 12 Aug 2026 17:37:35 +0200 Subject: [PATCH 3/3] chore: allow nonobvious in spell check --- .github/cspell.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/cspell.json b/.github/cspell.json index 55d4f87..787493e 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -14,5 +14,6 @@ "description": "Forbidden VGV Spellings" } ], - "useGitignore": true + "useGitignore": true, + "words": ["nonobvious"] }