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/4] 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/4] 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/4] 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 From 919e19122f6a59be17177c2a25df059afc028265 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 12:42:14 +0000 Subject: [PATCH 4/4] chore(deps): bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/commit-message.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c60d464..df6deb6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v5 diff --git a/.github/workflows/commit-message.yml b/.github/workflows/commit-message.yml index c0e810b..40536bb 100644 --- a/.github/workflows/commit-message.yml +++ b/.github/workflows/commit-message.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Check commit message - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Fetch base branch