From ae7aaeb266ef10a1d77a6ee11a0f4ff96df296e1 Mon Sep 17 00:00:00 2001 From: Lev Gusiev <89646710+BytecodeBrewer@users.noreply.github.com> Date: Sat, 20 Jun 2026 16:26:04 +0200 Subject: [PATCH 1/3] chore(#56): update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 9 +++++++ .github/ISSUE_TEMPLATE/feature_request.md | 31 +++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dc01479..1a21d8a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,3 +1,12 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + ## Problem Describe what is broken. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..dce721c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,31 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +## Goal + +Describe what should be achieved. + +## Why + +Explain why this task is useful for the project. + +## Scope + +- +- +- + +## Acceptance criteria + +- [ ] +- [ ] +- [ ] + +> [!NOTE] +> Priority: From e4200769c8f637f6b233f98a6da326e65e1e808d Mon Sep 17 00:00:00 2001 From: Lev Gusiev Date: Sat, 20 Jun 2026 16:47:16 +0200 Subject: [PATCH 2/3] chore(#56): update action --- .github/workflows/commit-message.yml | 7 ++++++- .gitignore | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit-message.yml b/.github/workflows/commit-message.yml index 6ce4f57..02a4698 100644 --- a/.github/workflows/commit-message.yml +++ b/.github/workflows/commit-message.yml @@ -44,9 +44,14 @@ jobs: echo "" echo "Expected format:" echo " feat(#1): add feature" - echo " chore(#5): add a file to .gitignore" + echo " chore(#5): add file to .gitignore" + echo " ci(#3): validate commit messages" + echo " chore(deps): update dependencies" echo "" echo "Allowed types:" echo " feat, fix, docs, style, refactor, test, chore, ci, build, perf" + echo "" + echo "Special dependency format:" + echo " chore(deps): message" exit 1 fi diff --git a/.gitignore b/.gitignore index 9a1d8a1..973c350 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ __pycache__ .ruff_cache # Virtual environment -.env \ No newline at end of file +.env +.venv \ No newline at end of file From e5d969ba49cd314713c25e299f1af67a8163e6c6 Mon Sep 17 00:00:00 2001 From: Lev Gusiev Date: Sat, 20 Jun 2026 16:48:52 +0200 Subject: [PATCH 3/3] chore(#56): extend commit msg --- .github/workflows/commit-message.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-message.yml b/.github/workflows/commit-message.yml index 02a4698..c0e810b 100644 --- a/.github/workflows/commit-message.yml +++ b/.github/workflows/commit-message.yml @@ -23,7 +23,7 @@ jobs: - name: Validate commit message shell: bash run: | - pattern='^((feat|fix|docs|style|refactor|test|chore|ci|build|perf)\(#[0-9]+\): .{1,50}|chore\(deps\): .{1,72})$' + pattern='^((feat|fix|docs|style|refactor|test|chore|ci|build|perf)\(#[0-9]+\): .{1,72}|chore\(deps\): .{1,72})$' invalid=0 while IFS= read -r commit_message; do